Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib/ci
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2016-05-23 21:16:35 +0300
committerRobert Speicher <rspeicher@gmail.com>2016-05-23 21:16:35 +0300
commit3ba72f69af69d9fb2c46cb6c25d571f92ffd2ee1 (patch)
treef5b527f659bc3fe4e417c63ac9bd6fe0c97e5250 /lib/ci
parent68b8e86a813608ae378b39ba5a64ff07fb9a057a (diff)
Enable Style/SpaceAroundKeyword cop and fix offenses
Diffstat (limited to 'lib/ci')
-rw-r--r--lib/ci/ansi2html.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ci/ansi2html.rb b/lib/ci/ansi2html.rb
index 5fed43aaebd..c628257e3f4 100644
--- a/lib/ci/ansi2html.rb
+++ b/lib/ci/ansi2html.rb
@@ -98,7 +98,7 @@ module Ci
open_new_tag
s = StringScanner.new(ansi)
- while(!s.eos?)
+ until s.eos?
if s.scan(/\e([@-_])(.*?)([@-~])/)
handle_sequence(s)
elsif s.scan(/\e(([@-_])(.*?)?)?$/)