rfix 1.0.7.pre.67 → 1.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/.gitignore +20 -0
 - data/.rubocop.yml +4 -0
 - data/.travis.yml +7 -10
 - data/Gemfile +2 -16
 - data/Gemfile.base +7 -0
 - data/Gemfile.lock +14 -44
 - data/Makefile +13 -0
 - data/README.md +66 -13
 - data/Rakefile +59 -46
 - data/bin/bundle +114 -0
 - data/bin/console +23 -9
 - data/bin/guard +29 -0
 - data/bin/rake +29 -0
 - data/bin/rfix +29 -0
 - data/bin/rspec +29 -0
 - data/bin/setup +27 -6
 - data/ci/Gemfile.rubocop-0.80 +1 -1
 - data/ci/Gemfile.rubocop-0.80.lock +15 -46
 - data/ci/Gemfile.rubocop-0.81 +1 -1
 - data/ci/Gemfile.rubocop-0.81.lock +15 -46
 - data/ci/Gemfile.rubocop-0.82 +2 -2
 - data/ci/Gemfile.rubocop-0.82.lock +16 -47
 - data/ci/Gemfile.rubocop-0.83 +1 -1
 - data/ci/Gemfile.rubocop-0.83.lock +15 -46
 - data/ci/Gemfile.rubocop-0.84 +1 -1
 - data/ci/Gemfile.rubocop-0.84.lock +15 -46
 - data/ci/Gemfile.rubocop-0.85 +1 -1
 - data/ci/Gemfile.rubocop-0.85.1 +1 -1
 - data/ci/Gemfile.rubocop-0.85.1.lock +15 -46
 - data/ci/Gemfile.rubocop-0.85.lock +15 -46
 - data/exe/rfix +30 -14
 - data/file.rb +1 -0
 - data/lib/rfix.rb +1 -1
 - data/lib/rfix/cmd.rb +9 -3
 - data/lib/rfix/gem_helper.rb +12 -0
 - data/lib/rfix/git_helper.rb +19 -2
 - data/lib/rfix/log.rb +4 -2
 - data/lib/rfix/rake_helper.rb +56 -0
 - data/lib/rfix/rfix.rb +81 -26
 - data/lib/rfix/tracked_file.rb +1 -1
 - data/lib/rfix/version.rb +1 -1
 - data/resources/ps.png +0 -0
 - data/rfix.gemspec +17 -12
 - metadata +96 -44
 
    
        data/ci/Gemfile.rubocop-0.81
    CHANGED
    
    | 
         @@ -1,2 +1,2 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            eval_gemfile("../Gemfile")
         
     | 
| 
      
 1 
     | 
    
         
            +
            eval_gemfile(File.join(__dir__, "../Gemfile.base"))
         
     | 
| 
       2 
2 
     | 
    
         
             
            gem "rubocop", "0.81"
         
     | 
| 
         @@ -1,42 +1,22 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            GIT
         
     | 
| 
       2 
     | 
    
         
            -
              remote: https://github.com/Shopify/cli-ui.git
         
     | 
| 
       3 
     | 
    
         
            -
              revision: ef976df676f43a80b47249ac2390d5f12b2293d1
         
     | 
| 
       4 
     | 
    
         
            -
              ref: ef976df676f4
         
     | 
| 
       5 
     | 
    
         
            -
              specs:
         
     | 
| 
       6 
     | 
    
         
            -
                cli-ui (1.3.0)
         
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
       8 
     | 
    
         
            -
            GIT
         
     | 
| 
       9 
     | 
    
         
            -
              remote: https://github.com/oleander/git-fame-rb.git
         
     | 
| 
       10 
     | 
    
         
            -
              revision: a9b9c25bbab197feaee00f9a5c970998e76f636c
         
     | 
| 
       11 
     | 
    
         
            -
              ref: a9b9c25bbab1
         
     | 
| 
       12 
     | 
    
         
            -
              specs:
         
     | 
| 
       13 
     | 
    
         
            -
                git_fame (2.5.3)
         
     | 
| 
       14 
     | 
    
         
            -
                  hirb (~> 0.7.3)
         
     | 
| 
       15 
     | 
    
         
            -
                  memoist (~> 0.14.0)
         
     | 
| 
       16 
     | 
    
         
            -
                  method_profiler (~> 2.0.1)
         
     | 
| 
       17 
     | 
    
         
            -
                  progressbar (~> 0.21.0)
         
     | 
| 
       18 
     | 
    
         
            -
                  scrub_rb (~> 1.0.1)
         
     | 
| 
       19 
     | 
    
         
            -
                  trollop (~> 2.1.2)
         
     | 
| 
       20 
     | 
    
         
            -
             
     | 
| 
       21 
1 
     | 
    
         
             
            PATH
         
     | 
| 
       22 
     | 
    
         
            -
              remote:  
     | 
| 
      
 2 
     | 
    
         
            +
              remote: .
         
     | 
| 
       23 
3 
     | 
    
         
             
              specs:
         
     | 
| 
       24 
     | 
    
         
            -
                rfix (0. 
     | 
| 
      
 4 
     | 
    
         
            +
                rfix (1.0.8)
         
     | 
| 
       25 
5 
     | 
    
         
             
                  rainbow (~> 3.0)
         
     | 
| 
       26 
6 
     | 
    
         
             
                  rouge (~> 3.20)
         
     | 
| 
       27 
     | 
    
         
            -
                  rubocop ( 
     | 
| 
      
 7 
     | 
    
         
            +
                  rubocop (>= 0.80)
         
     | 
| 
       28 
8 
     | 
    
         | 
| 
       29 
9 
     | 
    
         
             
            GEM
         
     | 
| 
       30 
10 
     | 
    
         
             
              remote: https://rubygems.org/
         
     | 
| 
       31 
11 
     | 
    
         
             
              specs:
         
     | 
| 
       32 
     | 
    
         
            -
                activesupport (6.0.3. 
     | 
| 
      
 12 
     | 
    
         
            +
                activesupport (6.0.3.2)
         
     | 
| 
       33 
13 
     | 
    
         
             
                  concurrent-ruby (~> 1.0, >= 1.0.2)
         
     | 
| 
       34 
14 
     | 
    
         
             
                  i18n (>= 0.7, < 2)
         
     | 
| 
       35 
15 
     | 
    
         
             
                  minitest (~> 5.1)
         
     | 
| 
       36 
16 
     | 
    
         
             
                  tzinfo (~> 1.1)
         
     | 
| 
       37 
17 
     | 
    
         
             
                  zeitwerk (~> 2.2, >= 2.2.2)
         
     | 
| 
       38 
     | 
    
         
            -
                aruba (1.0. 
     | 
| 
       39 
     | 
    
         
            -
                  childprocess ( 
     | 
| 
      
 18 
     | 
    
         
            +
                aruba (1.0.2)
         
     | 
| 
      
 19 
     | 
    
         
            +
                  childprocess (>= 2.0, < 5.0)
         
     | 
| 
       40 
20 
     | 
    
         
             
                  contracts (~> 0.16.0)
         
     | 
| 
       41 
21 
     | 
    
         
             
                  cucumber (>= 2.4, < 5.0)
         
     | 
| 
       42 
22 
     | 
    
         
             
                  ffi (~> 1.9)
         
     | 
| 
         @@ -44,7 +24,7 @@ GEM 
     | 
|
| 
       44 
24 
     | 
    
         
             
                  thor (~> 1.0)
         
     | 
| 
       45 
25 
     | 
    
         
             
                ast (2.4.1)
         
     | 
| 
       46 
26 
     | 
    
         
             
                builder (3.2.4)
         
     | 
| 
       47 
     | 
    
         
            -
                childprocess ( 
     | 
| 
      
 27 
     | 
    
         
            +
                childprocess (4.0.0)
         
     | 
| 
       48 
28 
     | 
    
         
             
                coderay (1.1.3)
         
     | 
| 
       49 
29 
     | 
    
         
             
                concurrent-ruby (1.1.6)
         
     | 
| 
       50 
30 
     | 
    
         
             
                contracts (0.16.0)
         
     | 
| 
         @@ -78,6 +58,7 @@ GEM 
     | 
|
| 
       78 
58 
     | 
    
         
             
                diff-lcs (1.3)
         
     | 
| 
       79 
59 
     | 
    
         
             
                ffi (1.13.1)
         
     | 
| 
       80 
60 
     | 
    
         
             
                formatador (0.2.5)
         
     | 
| 
      
 61 
     | 
    
         
            +
                gem-release (2.1.1)
         
     | 
| 
       81 
62 
     | 
    
         
             
                guard (2.16.2)
         
     | 
| 
       82 
63 
     | 
    
         
             
                  formatador (>= 0.2.4)
         
     | 
| 
       83 
64 
     | 
    
         
             
                  listen (>= 2.7, < 4.0)
         
     | 
| 
         @@ -92,17 +73,13 @@ GEM 
     | 
|
| 
       92 
73 
     | 
    
         
             
                  guard (~> 2.1)
         
     | 
| 
       93 
74 
     | 
    
         
             
                  guard-compat (~> 1.1)
         
     | 
| 
       94 
75 
     | 
    
         
             
                  rspec (>= 2.99.0, < 4.0)
         
     | 
| 
       95 
     | 
    
         
            -
                hirb (0.7.3)
         
     | 
| 
       96 
76 
     | 
    
         
             
                i18n (1.8.3)
         
     | 
| 
       97 
77 
     | 
    
         
             
                  concurrent-ruby (~> 1.0)
         
     | 
| 
       98 
78 
     | 
    
         
             
                jaro_winkler (1.5.4)
         
     | 
| 
       99 
79 
     | 
    
         
             
                listen (3.2.1)
         
     | 
| 
       100 
80 
     | 
    
         
             
                  rb-fsevent (~> 0.10, >= 0.10.3)
         
     | 
| 
       101 
81 
     | 
    
         
             
                  rb-inotify (~> 0.9, >= 0.9.10)
         
     | 
| 
       102 
     | 
    
         
            -
                lumberjack (1.2. 
     | 
| 
       103 
     | 
    
         
            -
                memoist (0.14.0)
         
     | 
| 
       104 
     | 
    
         
            -
                method_profiler (2.0.1)
         
     | 
| 
       105 
     | 
    
         
            -
                  hirb (>= 0.6.0)
         
     | 
| 
      
 82 
     | 
    
         
            +
                lumberjack (1.2.6)
         
     | 
| 
       106 
83 
     | 
    
         
             
                method_source (1.0.0)
         
     | 
| 
       107 
84 
     | 
    
         
             
                middleware (0.1.0)
         
     | 
| 
       108 
85 
     | 
    
         
             
                minitest (5.14.1)
         
     | 
| 
         @@ -111,10 +88,9 @@ GEM 
     | 
|
| 
       111 
88 
     | 
    
         
             
                notiffany (0.1.3)
         
     | 
| 
       112 
89 
     | 
    
         
             
                  nenv (~> 0.1)
         
     | 
| 
       113 
90 
     | 
    
         
             
                  shellany (~> 0.0)
         
     | 
| 
       114 
     | 
    
         
            -
                parallel (1.19. 
     | 
| 
       115 
     | 
    
         
            -
                parser (2.7.1. 
     | 
| 
       116 
     | 
    
         
            -
                  ast (~> 2.4. 
     | 
| 
       117 
     | 
    
         
            -
                progressbar (0.21.0)
         
     | 
| 
      
 91 
     | 
    
         
            +
                parallel (1.19.2)
         
     | 
| 
      
 92 
     | 
    
         
            +
                parser (2.7.1.4)
         
     | 
| 
      
 93 
     | 
    
         
            +
                  ast (~> 2.4.1)
         
     | 
| 
       118 
94 
     | 
    
         
             
                protobuf-cucumber (3.10.8)
         
     | 
| 
       119 
95 
     | 
    
         
             
                  activesupport (>= 3.2)
         
     | 
| 
       120 
96 
     | 
    
         
             
                  middleware
         
     | 
| 
         @@ -152,13 +128,11 @@ GEM 
     | 
|
| 
       152 
128 
     | 
    
         
             
                  ruby-progressbar (~> 1.7)
         
     | 
| 
       153 
129 
     | 
    
         
             
                  unicode-display_width (>= 1.4.0, < 2.0)
         
     | 
| 
       154 
130 
     | 
    
         
             
                ruby-progressbar (1.10.1)
         
     | 
| 
       155 
     | 
    
         
            -
                scrub_rb (1.0.1)
         
     | 
| 
       156 
131 
     | 
    
         
             
                shellany (0.0.1)
         
     | 
| 
       157 
132 
     | 
    
         
             
                sys-uname (1.2.1)
         
     | 
| 
       158 
133 
     | 
    
         
             
                  ffi (>= 1.0.0)
         
     | 
| 
       159 
134 
     | 
    
         
             
                thor (1.0.1)
         
     | 
| 
       160 
135 
     | 
    
         
             
                thread_safe (0.3.6)
         
     | 
| 
       161 
     | 
    
         
            -
                trollop (2.1.3)
         
     | 
| 
       162 
136 
     | 
    
         
             
                tzinfo (1.2.7)
         
     | 
| 
       163 
137 
     | 
    
         
             
                  thread_safe (~> 0.1)
         
     | 
| 
       164 
138 
     | 
    
         
             
                unicode-display_width (1.7.0)
         
     | 
| 
         @@ -168,19 +142,14 @@ PLATFORMS 
     | 
|
| 
       168 
142 
     | 
    
         
             
              ruby
         
     | 
| 
       169 
143 
     | 
    
         | 
| 
       170 
144 
     | 
    
         
             
            DEPENDENCIES
         
     | 
| 
       171 
     | 
    
         
            -
              aruba
         
     | 
| 
       172 
     | 
    
         
            -
               
     | 
| 
       173 
     | 
    
         
            -
              git_fame!
         
     | 
| 
      
 145 
     | 
    
         
            +
              aruba (~> 1.0)
         
     | 
| 
      
 146 
     | 
    
         
            +
              gem-release
         
     | 
| 
       174 
147 
     | 
    
         
             
              guard
         
     | 
| 
       175 
148 
     | 
    
         
             
              guard-rspec
         
     | 
| 
       176 
     | 
    
         
            -
               
     | 
| 
       177 
     | 
    
         
            -
              rake (~> 12.0)
         
     | 
| 
      
 149 
     | 
    
         
            +
              rake (~> 12.3)
         
     | 
| 
       178 
150 
     | 
    
         
             
              rfix!
         
     | 
| 
       179 
151 
     | 
    
         
             
              rspec (~> 3.0)
         
     | 
| 
       180 
152 
     | 
    
         
             
              rubocop (= 0.81)
         
     | 
| 
       181 
153 
     | 
    
         | 
| 
       182 
     | 
    
         
            -
            RUBY VERSION
         
     | 
| 
       183 
     | 
    
         
            -
               ruby 2.5.0p0
         
     | 
| 
       184 
     | 
    
         
            -
             
     | 
| 
       185 
154 
     | 
    
         
             
            BUNDLED WITH
         
     | 
| 
       186 
155 
     | 
    
         
             
               2.1.4
         
     | 
    
        data/ci/Gemfile.rubocop-0.82
    CHANGED
    
    | 
         @@ -1,2 +1,2 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            eval_gemfile("../Gemfile")
         
     | 
| 
       2 
     | 
    
         
            -
            gem "rubocop", "0.82"
         
     | 
| 
      
 1 
     | 
    
         
            +
            eval_gemfile(File.join(__dir__, "../Gemfile.base"))
         
     | 
| 
      
 2 
     | 
    
         
            +
            gem "rubocop", "0.82.0"
         
     | 
| 
         @@ -1,42 +1,22 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            GIT
         
     | 
| 
       2 
     | 
    
         
            -
              remote: https://github.com/Shopify/cli-ui.git
         
     | 
| 
       3 
     | 
    
         
            -
              revision: ef976df676f43a80b47249ac2390d5f12b2293d1
         
     | 
| 
       4 
     | 
    
         
            -
              ref: ef976df676f4
         
     | 
| 
       5 
     | 
    
         
            -
              specs:
         
     | 
| 
       6 
     | 
    
         
            -
                cli-ui (1.3.0)
         
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
       8 
     | 
    
         
            -
            GIT
         
     | 
| 
       9 
     | 
    
         
            -
              remote: https://github.com/oleander/git-fame-rb.git
         
     | 
| 
       10 
     | 
    
         
            -
              revision: a9b9c25bbab197feaee00f9a5c970998e76f636c
         
     | 
| 
       11 
     | 
    
         
            -
              ref: a9b9c25bbab1
         
     | 
| 
       12 
     | 
    
         
            -
              specs:
         
     | 
| 
       13 
     | 
    
         
            -
                git_fame (2.5.3)
         
     | 
| 
       14 
     | 
    
         
            -
                  hirb (~> 0.7.3)
         
     | 
| 
       15 
     | 
    
         
            -
                  memoist (~> 0.14.0)
         
     | 
| 
       16 
     | 
    
         
            -
                  method_profiler (~> 2.0.1)
         
     | 
| 
       17 
     | 
    
         
            -
                  progressbar (~> 0.21.0)
         
     | 
| 
       18 
     | 
    
         
            -
                  scrub_rb (~> 1.0.1)
         
     | 
| 
       19 
     | 
    
         
            -
                  trollop (~> 2.1.2)
         
     | 
| 
       20 
     | 
    
         
            -
             
     | 
| 
       21 
1 
     | 
    
         
             
            PATH
         
     | 
| 
       22 
     | 
    
         
            -
              remote:  
     | 
| 
      
 2 
     | 
    
         
            +
              remote: .
         
     | 
| 
       23 
3 
     | 
    
         
             
              specs:
         
     | 
| 
       24 
     | 
    
         
            -
                rfix (0. 
     | 
| 
      
 4 
     | 
    
         
            +
                rfix (1.0.8)
         
     | 
| 
       25 
5 
     | 
    
         
             
                  rainbow (~> 3.0)
         
     | 
| 
       26 
6 
     | 
    
         
             
                  rouge (~> 3.20)
         
     | 
| 
       27 
     | 
    
         
            -
                  rubocop ( 
     | 
| 
      
 7 
     | 
    
         
            +
                  rubocop (>= 0.80)
         
     | 
| 
       28 
8 
     | 
    
         | 
| 
       29 
9 
     | 
    
         
             
            GEM
         
     | 
| 
       30 
10 
     | 
    
         
             
              remote: https://rubygems.org/
         
     | 
| 
       31 
11 
     | 
    
         
             
              specs:
         
     | 
| 
       32 
     | 
    
         
            -
                activesupport (6.0.3. 
     | 
| 
      
 12 
     | 
    
         
            +
                activesupport (6.0.3.2)
         
     | 
| 
       33 
13 
     | 
    
         
             
                  concurrent-ruby (~> 1.0, >= 1.0.2)
         
     | 
| 
       34 
14 
     | 
    
         
             
                  i18n (>= 0.7, < 2)
         
     | 
| 
       35 
15 
     | 
    
         
             
                  minitest (~> 5.1)
         
     | 
| 
       36 
16 
     | 
    
         
             
                  tzinfo (~> 1.1)
         
     | 
| 
       37 
17 
     | 
    
         
             
                  zeitwerk (~> 2.2, >= 2.2.2)
         
     | 
| 
       38 
     | 
    
         
            -
                aruba (1.0. 
     | 
| 
       39 
     | 
    
         
            -
                  childprocess ( 
     | 
| 
      
 18 
     | 
    
         
            +
                aruba (1.0.2)
         
     | 
| 
      
 19 
     | 
    
         
            +
                  childprocess (>= 2.0, < 5.0)
         
     | 
| 
       40 
20 
     | 
    
         
             
                  contracts (~> 0.16.0)
         
     | 
| 
       41 
21 
     | 
    
         
             
                  cucumber (>= 2.4, < 5.0)
         
     | 
| 
       42 
22 
     | 
    
         
             
                  ffi (~> 1.9)
         
     | 
| 
         @@ -44,7 +24,7 @@ GEM 
     | 
|
| 
       44 
24 
     | 
    
         
             
                  thor (~> 1.0)
         
     | 
| 
       45 
25 
     | 
    
         
             
                ast (2.4.1)
         
     | 
| 
       46 
26 
     | 
    
         
             
                builder (3.2.4)
         
     | 
| 
       47 
     | 
    
         
            -
                childprocess ( 
     | 
| 
      
 27 
     | 
    
         
            +
                childprocess (4.0.0)
         
     | 
| 
       48 
28 
     | 
    
         
             
                coderay (1.1.3)
         
     | 
| 
       49 
29 
     | 
    
         
             
                concurrent-ruby (1.1.6)
         
     | 
| 
       50 
30 
     | 
    
         
             
                contracts (0.16.0)
         
     | 
| 
         @@ -78,6 +58,7 @@ GEM 
     | 
|
| 
       78 
58 
     | 
    
         
             
                diff-lcs (1.3)
         
     | 
| 
       79 
59 
     | 
    
         
             
                ffi (1.13.1)
         
     | 
| 
       80 
60 
     | 
    
         
             
                formatador (0.2.5)
         
     | 
| 
      
 61 
     | 
    
         
            +
                gem-release (2.1.1)
         
     | 
| 
       81 
62 
     | 
    
         
             
                guard (2.16.2)
         
     | 
| 
       82 
63 
     | 
    
         
             
                  formatador (>= 0.2.4)
         
     | 
| 
       83 
64 
     | 
    
         
             
                  listen (>= 2.7, < 4.0)
         
     | 
| 
         @@ -92,17 +73,13 @@ GEM 
     | 
|
| 
       92 
73 
     | 
    
         
             
                  guard (~> 2.1)
         
     | 
| 
       93 
74 
     | 
    
         
             
                  guard-compat (~> 1.1)
         
     | 
| 
       94 
75 
     | 
    
         
             
                  rspec (>= 2.99.0, < 4.0)
         
     | 
| 
       95 
     | 
    
         
            -
                hirb (0.7.3)
         
     | 
| 
       96 
76 
     | 
    
         
             
                i18n (1.8.3)
         
     | 
| 
       97 
77 
     | 
    
         
             
                  concurrent-ruby (~> 1.0)
         
     | 
| 
       98 
78 
     | 
    
         
             
                jaro_winkler (1.5.4)
         
     | 
| 
       99 
79 
     | 
    
         
             
                listen (3.2.1)
         
     | 
| 
       100 
80 
     | 
    
         
             
                  rb-fsevent (~> 0.10, >= 0.10.3)
         
     | 
| 
       101 
81 
     | 
    
         
             
                  rb-inotify (~> 0.9, >= 0.9.10)
         
     | 
| 
       102 
     | 
    
         
            -
                lumberjack (1.2. 
     | 
| 
       103 
     | 
    
         
            -
                memoist (0.14.0)
         
     | 
| 
       104 
     | 
    
         
            -
                method_profiler (2.0.1)
         
     | 
| 
       105 
     | 
    
         
            -
                  hirb (>= 0.6.0)
         
     | 
| 
      
 82 
     | 
    
         
            +
                lumberjack (1.2.6)
         
     | 
| 
       106 
83 
     | 
    
         
             
                method_source (1.0.0)
         
     | 
| 
       107 
84 
     | 
    
         
             
                middleware (0.1.0)
         
     | 
| 
       108 
85 
     | 
    
         
             
                minitest (5.14.1)
         
     | 
| 
         @@ -111,10 +88,9 @@ GEM 
     | 
|
| 
       111 
88 
     | 
    
         
             
                notiffany (0.1.3)
         
     | 
| 
       112 
89 
     | 
    
         
             
                  nenv (~> 0.1)
         
     | 
| 
       113 
90 
     | 
    
         
             
                  shellany (~> 0.0)
         
     | 
| 
       114 
     | 
    
         
            -
                parallel (1.19. 
     | 
| 
       115 
     | 
    
         
            -
                parser (2.7.1. 
     | 
| 
       116 
     | 
    
         
            -
                  ast (~> 2.4. 
     | 
| 
       117 
     | 
    
         
            -
                progressbar (0.21.0)
         
     | 
| 
      
 91 
     | 
    
         
            +
                parallel (1.19.2)
         
     | 
| 
      
 92 
     | 
    
         
            +
                parser (2.7.1.4)
         
     | 
| 
      
 93 
     | 
    
         
            +
                  ast (~> 2.4.1)
         
     | 
| 
       118 
94 
     | 
    
         
             
                protobuf-cucumber (3.10.8)
         
     | 
| 
       119 
95 
     | 
    
         
             
                  activesupport (>= 3.2)
         
     | 
| 
       120 
96 
     | 
    
         
             
                  middleware
         
     | 
| 
         @@ -152,13 +128,11 @@ GEM 
     | 
|
| 
       152 
128 
     | 
    
         
             
                  ruby-progressbar (~> 1.7)
         
     | 
| 
       153 
129 
     | 
    
         
             
                  unicode-display_width (>= 1.4.0, < 2.0)
         
     | 
| 
       154 
130 
     | 
    
         
             
                ruby-progressbar (1.10.1)
         
     | 
| 
       155 
     | 
    
         
            -
                scrub_rb (1.0.1)
         
     | 
| 
       156 
131 
     | 
    
         
             
                shellany (0.0.1)
         
     | 
| 
       157 
132 
     | 
    
         
             
                sys-uname (1.2.1)
         
     | 
| 
       158 
133 
     | 
    
         
             
                  ffi (>= 1.0.0)
         
     | 
| 
       159 
134 
     | 
    
         
             
                thor (1.0.1)
         
     | 
| 
       160 
135 
     | 
    
         
             
                thread_safe (0.3.6)
         
     | 
| 
       161 
     | 
    
         
            -
                trollop (2.1.3)
         
     | 
| 
       162 
136 
     | 
    
         
             
                tzinfo (1.2.7)
         
     | 
| 
       163 
137 
     | 
    
         
             
                  thread_safe (~> 0.1)
         
     | 
| 
       164 
138 
     | 
    
         
             
                unicode-display_width (1.7.0)
         
     | 
| 
         @@ -168,19 +142,14 @@ PLATFORMS 
     | 
|
| 
       168 
142 
     | 
    
         
             
              ruby
         
     | 
| 
       169 
143 
     | 
    
         | 
| 
       170 
144 
     | 
    
         
             
            DEPENDENCIES
         
     | 
| 
       171 
     | 
    
         
            -
              aruba
         
     | 
| 
       172 
     | 
    
         
            -
               
     | 
| 
       173 
     | 
    
         
            -
              git_fame!
         
     | 
| 
      
 145 
     | 
    
         
            +
              aruba (~> 1.0)
         
     | 
| 
      
 146 
     | 
    
         
            +
              gem-release
         
     | 
| 
       174 
147 
     | 
    
         
             
              guard
         
     | 
| 
       175 
148 
     | 
    
         
             
              guard-rspec
         
     | 
| 
       176 
     | 
    
         
            -
               
     | 
| 
       177 
     | 
    
         
            -
              rake (~> 12.0)
         
     | 
| 
      
 149 
     | 
    
         
            +
              rake (~> 12.3)
         
     | 
| 
       178 
150 
     | 
    
         
             
              rfix!
         
     | 
| 
       179 
151 
     | 
    
         
             
              rspec (~> 3.0)
         
     | 
| 
       180 
     | 
    
         
            -
              rubocop (= 0.82)
         
     | 
| 
       181 
     | 
    
         
            -
             
     | 
| 
       182 
     | 
    
         
            -
            RUBY VERSION
         
     | 
| 
       183 
     | 
    
         
            -
               ruby 2.5.0p0
         
     | 
| 
      
 152 
     | 
    
         
            +
              rubocop (= 0.82.0)
         
     | 
| 
       184 
153 
     | 
    
         | 
| 
       185 
154 
     | 
    
         
             
            BUNDLED WITH
         
     | 
| 
       186 
155 
     | 
    
         
             
               2.1.4
         
     | 
    
        data/ci/Gemfile.rubocop-0.83
    CHANGED
    
    | 
         @@ -1,2 +1,2 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            eval_gemfile("../Gemfile")
         
     | 
| 
      
 1 
     | 
    
         
            +
            eval_gemfile(File.join(__dir__, "../Gemfile.base"))
         
     | 
| 
       2 
2 
     | 
    
         
             
            gem "rubocop", "0.83"
         
     | 
| 
         @@ -1,42 +1,22 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            GIT
         
     | 
| 
       2 
     | 
    
         
            -
              remote: https://github.com/Shopify/cli-ui.git
         
     | 
| 
       3 
     | 
    
         
            -
              revision: ef976df676f43a80b47249ac2390d5f12b2293d1
         
     | 
| 
       4 
     | 
    
         
            -
              ref: ef976df676f4
         
     | 
| 
       5 
     | 
    
         
            -
              specs:
         
     | 
| 
       6 
     | 
    
         
            -
                cli-ui (1.3.0)
         
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
       8 
     | 
    
         
            -
            GIT
         
     | 
| 
       9 
     | 
    
         
            -
              remote: https://github.com/oleander/git-fame-rb.git
         
     | 
| 
       10 
     | 
    
         
            -
              revision: a9b9c25bbab197feaee00f9a5c970998e76f636c
         
     | 
| 
       11 
     | 
    
         
            -
              ref: a9b9c25bbab1
         
     | 
| 
       12 
     | 
    
         
            -
              specs:
         
     | 
| 
       13 
     | 
    
         
            -
                git_fame (2.5.3)
         
     | 
| 
       14 
     | 
    
         
            -
                  hirb (~> 0.7.3)
         
     | 
| 
       15 
     | 
    
         
            -
                  memoist (~> 0.14.0)
         
     | 
| 
       16 
     | 
    
         
            -
                  method_profiler (~> 2.0.1)
         
     | 
| 
       17 
     | 
    
         
            -
                  progressbar (~> 0.21.0)
         
     | 
| 
       18 
     | 
    
         
            -
                  scrub_rb (~> 1.0.1)
         
     | 
| 
       19 
     | 
    
         
            -
                  trollop (~> 2.1.2)
         
     | 
| 
       20 
     | 
    
         
            -
             
     | 
| 
       21 
1 
     | 
    
         
             
            PATH
         
     | 
| 
       22 
     | 
    
         
            -
              remote:  
     | 
| 
      
 2 
     | 
    
         
            +
              remote: .
         
     | 
| 
       23 
3 
     | 
    
         
             
              specs:
         
     | 
| 
       24 
     | 
    
         
            -
                rfix (0. 
     | 
| 
      
 4 
     | 
    
         
            +
                rfix (1.0.8)
         
     | 
| 
       25 
5 
     | 
    
         
             
                  rainbow (~> 3.0)
         
     | 
| 
       26 
6 
     | 
    
         
             
                  rouge (~> 3.20)
         
     | 
| 
       27 
     | 
    
         
            -
                  rubocop ( 
     | 
| 
      
 7 
     | 
    
         
            +
                  rubocop (>= 0.80)
         
     | 
| 
       28 
8 
     | 
    
         | 
| 
       29 
9 
     | 
    
         
             
            GEM
         
     | 
| 
       30 
10 
     | 
    
         
             
              remote: https://rubygems.org/
         
     | 
| 
       31 
11 
     | 
    
         
             
              specs:
         
     | 
| 
       32 
     | 
    
         
            -
                activesupport (6.0.3. 
     | 
| 
      
 12 
     | 
    
         
            +
                activesupport (6.0.3.2)
         
     | 
| 
       33 
13 
     | 
    
         
             
                  concurrent-ruby (~> 1.0, >= 1.0.2)
         
     | 
| 
       34 
14 
     | 
    
         
             
                  i18n (>= 0.7, < 2)
         
     | 
| 
       35 
15 
     | 
    
         
             
                  minitest (~> 5.1)
         
     | 
| 
       36 
16 
     | 
    
         
             
                  tzinfo (~> 1.1)
         
     | 
| 
       37 
17 
     | 
    
         
             
                  zeitwerk (~> 2.2, >= 2.2.2)
         
     | 
| 
       38 
     | 
    
         
            -
                aruba (1.0. 
     | 
| 
       39 
     | 
    
         
            -
                  childprocess ( 
     | 
| 
      
 18 
     | 
    
         
            +
                aruba (1.0.2)
         
     | 
| 
      
 19 
     | 
    
         
            +
                  childprocess (>= 2.0, < 5.0)
         
     | 
| 
       40 
20 
     | 
    
         
             
                  contracts (~> 0.16.0)
         
     | 
| 
       41 
21 
     | 
    
         
             
                  cucumber (>= 2.4, < 5.0)
         
     | 
| 
       42 
22 
     | 
    
         
             
                  ffi (~> 1.9)
         
     | 
| 
         @@ -44,7 +24,7 @@ GEM 
     | 
|
| 
       44 
24 
     | 
    
         
             
                  thor (~> 1.0)
         
     | 
| 
       45 
25 
     | 
    
         
             
                ast (2.4.1)
         
     | 
| 
       46 
26 
     | 
    
         
             
                builder (3.2.4)
         
     | 
| 
       47 
     | 
    
         
            -
                childprocess ( 
     | 
| 
      
 27 
     | 
    
         
            +
                childprocess (4.0.0)
         
     | 
| 
       48 
28 
     | 
    
         
             
                coderay (1.1.3)
         
     | 
| 
       49 
29 
     | 
    
         
             
                concurrent-ruby (1.1.6)
         
     | 
| 
       50 
30 
     | 
    
         
             
                contracts (0.16.0)
         
     | 
| 
         @@ -78,6 +58,7 @@ GEM 
     | 
|
| 
       78 
58 
     | 
    
         
             
                diff-lcs (1.3)
         
     | 
| 
       79 
59 
     | 
    
         
             
                ffi (1.13.1)
         
     | 
| 
       80 
60 
     | 
    
         
             
                formatador (0.2.5)
         
     | 
| 
      
 61 
     | 
    
         
            +
                gem-release (2.1.1)
         
     | 
| 
       81 
62 
     | 
    
         
             
                guard (2.16.2)
         
     | 
| 
       82 
63 
     | 
    
         
             
                  formatador (>= 0.2.4)
         
     | 
| 
       83 
64 
     | 
    
         
             
                  listen (>= 2.7, < 4.0)
         
     | 
| 
         @@ -92,16 +73,12 @@ GEM 
     | 
|
| 
       92 
73 
     | 
    
         
             
                  guard (~> 2.1)
         
     | 
| 
       93 
74 
     | 
    
         
             
                  guard-compat (~> 1.1)
         
     | 
| 
       94 
75 
     | 
    
         
             
                  rspec (>= 2.99.0, < 4.0)
         
     | 
| 
       95 
     | 
    
         
            -
                hirb (0.7.3)
         
     | 
| 
       96 
76 
     | 
    
         
             
                i18n (1.8.3)
         
     | 
| 
       97 
77 
     | 
    
         
             
                  concurrent-ruby (~> 1.0)
         
     | 
| 
       98 
78 
     | 
    
         
             
                listen (3.2.1)
         
     | 
| 
       99 
79 
     | 
    
         
             
                  rb-fsevent (~> 0.10, >= 0.10.3)
         
     | 
| 
       100 
80 
     | 
    
         
             
                  rb-inotify (~> 0.9, >= 0.9.10)
         
     | 
| 
       101 
     | 
    
         
            -
                lumberjack (1.2. 
     | 
| 
       102 
     | 
    
         
            -
                memoist (0.14.0)
         
     | 
| 
       103 
     | 
    
         
            -
                method_profiler (2.0.1)
         
     | 
| 
       104 
     | 
    
         
            -
                  hirb (>= 0.6.0)
         
     | 
| 
      
 81 
     | 
    
         
            +
                lumberjack (1.2.6)
         
     | 
| 
       105 
82 
     | 
    
         
             
                method_source (1.0.0)
         
     | 
| 
       106 
83 
     | 
    
         
             
                middleware (0.1.0)
         
     | 
| 
       107 
84 
     | 
    
         
             
                minitest (5.14.1)
         
     | 
| 
         @@ -110,10 +87,9 @@ GEM 
     | 
|
| 
       110 
87 
     | 
    
         
             
                notiffany (0.1.3)
         
     | 
| 
       111 
88 
     | 
    
         
             
                  nenv (~> 0.1)
         
     | 
| 
       112 
89 
     | 
    
         
             
                  shellany (~> 0.0)
         
     | 
| 
       113 
     | 
    
         
            -
                parallel (1.19. 
     | 
| 
       114 
     | 
    
         
            -
                parser (2.7.1. 
     | 
| 
       115 
     | 
    
         
            -
                  ast (~> 2.4. 
     | 
| 
       116 
     | 
    
         
            -
                progressbar (0.21.0)
         
     | 
| 
      
 90 
     | 
    
         
            +
                parallel (1.19.2)
         
     | 
| 
      
 91 
     | 
    
         
            +
                parser (2.7.1.4)
         
     | 
| 
      
 92 
     | 
    
         
            +
                  ast (~> 2.4.1)
         
     | 
| 
       117 
93 
     | 
    
         
             
                protobuf-cucumber (3.10.8)
         
     | 
| 
       118 
94 
     | 
    
         
             
                  activesupport (>= 3.2)
         
     | 
| 
       119 
95 
     | 
    
         
             
                  middleware
         
     | 
| 
         @@ -150,13 +126,11 @@ GEM 
     | 
|
| 
       150 
126 
     | 
    
         
             
                  ruby-progressbar (~> 1.7)
         
     | 
| 
       151 
127 
     | 
    
         
             
                  unicode-display_width (>= 1.4.0, < 2.0)
         
     | 
| 
       152 
128 
     | 
    
         
             
                ruby-progressbar (1.10.1)
         
     | 
| 
       153 
     | 
    
         
            -
                scrub_rb (1.0.1)
         
     | 
| 
       154 
129 
     | 
    
         
             
                shellany (0.0.1)
         
     | 
| 
       155 
130 
     | 
    
         
             
                sys-uname (1.2.1)
         
     | 
| 
       156 
131 
     | 
    
         
             
                  ffi (>= 1.0.0)
         
     | 
| 
       157 
132 
     | 
    
         
             
                thor (1.0.1)
         
     | 
| 
       158 
133 
     | 
    
         
             
                thread_safe (0.3.6)
         
     | 
| 
       159 
     | 
    
         
            -
                trollop (2.1.3)
         
     | 
| 
       160 
134 
     | 
    
         
             
                tzinfo (1.2.7)
         
     | 
| 
       161 
135 
     | 
    
         
             
                  thread_safe (~> 0.1)
         
     | 
| 
       162 
136 
     | 
    
         
             
                unicode-display_width (1.7.0)
         
     | 
| 
         @@ -166,19 +140,14 @@ PLATFORMS 
     | 
|
| 
       166 
140 
     | 
    
         
             
              ruby
         
     | 
| 
       167 
141 
     | 
    
         | 
| 
       168 
142 
     | 
    
         
             
            DEPENDENCIES
         
     | 
| 
       169 
     | 
    
         
            -
              aruba
         
     | 
| 
       170 
     | 
    
         
            -
               
     | 
| 
       171 
     | 
    
         
            -
              git_fame!
         
     | 
| 
      
 143 
     | 
    
         
            +
              aruba (~> 1.0)
         
     | 
| 
      
 144 
     | 
    
         
            +
              gem-release
         
     | 
| 
       172 
145 
     | 
    
         
             
              guard
         
     | 
| 
       173 
146 
     | 
    
         
             
              guard-rspec
         
     | 
| 
       174 
     | 
    
         
            -
               
     | 
| 
       175 
     | 
    
         
            -
              rake (~> 12.0)
         
     | 
| 
      
 147 
     | 
    
         
            +
              rake (~> 12.3)
         
     | 
| 
       176 
148 
     | 
    
         
             
              rfix!
         
     | 
| 
       177 
149 
     | 
    
         
             
              rspec (~> 3.0)
         
     | 
| 
       178 
150 
     | 
    
         
             
              rubocop (= 0.83)
         
     | 
| 
       179 
151 
     | 
    
         | 
| 
       180 
     | 
    
         
            -
            RUBY VERSION
         
     | 
| 
       181 
     | 
    
         
            -
               ruby 2.5.0p0
         
     | 
| 
       182 
     | 
    
         
            -
             
     | 
| 
       183 
152 
     | 
    
         
             
            BUNDLED WITH
         
     | 
| 
       184 
153 
     | 
    
         
             
               2.1.4
         
     | 
    
        data/ci/Gemfile.rubocop-0.84
    CHANGED
    
    | 
         @@ -1,2 +1,2 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            eval_gemfile("../Gemfile")
         
     | 
| 
      
 1 
     | 
    
         
            +
            eval_gemfile(File.join(__dir__, "../Gemfile.base"))
         
     | 
| 
       2 
2 
     | 
    
         
             
            gem "rubocop", "0.84"
         
     | 
| 
         @@ -1,42 +1,22 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            GIT
         
     | 
| 
       2 
     | 
    
         
            -
              remote: https://github.com/Shopify/cli-ui.git
         
     | 
| 
       3 
     | 
    
         
            -
              revision: ef976df676f43a80b47249ac2390d5f12b2293d1
         
     | 
| 
       4 
     | 
    
         
            -
              ref: ef976df676f4
         
     | 
| 
       5 
     | 
    
         
            -
              specs:
         
     | 
| 
       6 
     | 
    
         
            -
                cli-ui (1.3.0)
         
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
       8 
     | 
    
         
            -
            GIT
         
     | 
| 
       9 
     | 
    
         
            -
              remote: https://github.com/oleander/git-fame-rb.git
         
     | 
| 
       10 
     | 
    
         
            -
              revision: a9b9c25bbab197feaee00f9a5c970998e76f636c
         
     | 
| 
       11 
     | 
    
         
            -
              ref: a9b9c25bbab1
         
     | 
| 
       12 
     | 
    
         
            -
              specs:
         
     | 
| 
       13 
     | 
    
         
            -
                git_fame (2.5.3)
         
     | 
| 
       14 
     | 
    
         
            -
                  hirb (~> 0.7.3)
         
     | 
| 
       15 
     | 
    
         
            -
                  memoist (~> 0.14.0)
         
     | 
| 
       16 
     | 
    
         
            -
                  method_profiler (~> 2.0.1)
         
     | 
| 
       17 
     | 
    
         
            -
                  progressbar (~> 0.21.0)
         
     | 
| 
       18 
     | 
    
         
            -
                  scrub_rb (~> 1.0.1)
         
     | 
| 
       19 
     | 
    
         
            -
                  trollop (~> 2.1.2)
         
     | 
| 
       20 
     | 
    
         
            -
             
     | 
| 
       21 
1 
     | 
    
         
             
            PATH
         
     | 
| 
       22 
     | 
    
         
            -
              remote:  
     | 
| 
      
 2 
     | 
    
         
            +
              remote: .
         
     | 
| 
       23 
3 
     | 
    
         
             
              specs:
         
     | 
| 
       24 
     | 
    
         
            -
                rfix (0. 
     | 
| 
      
 4 
     | 
    
         
            +
                rfix (1.0.8)
         
     | 
| 
       25 
5 
     | 
    
         
             
                  rainbow (~> 3.0)
         
     | 
| 
       26 
6 
     | 
    
         
             
                  rouge (~> 3.20)
         
     | 
| 
       27 
     | 
    
         
            -
                  rubocop ( 
     | 
| 
      
 7 
     | 
    
         
            +
                  rubocop (>= 0.80)
         
     | 
| 
       28 
8 
     | 
    
         | 
| 
       29 
9 
     | 
    
         
             
            GEM
         
     | 
| 
       30 
10 
     | 
    
         
             
              remote: https://rubygems.org/
         
     | 
| 
       31 
11 
     | 
    
         
             
              specs:
         
     | 
| 
       32 
     | 
    
         
            -
                activesupport (6.0.3. 
     | 
| 
      
 12 
     | 
    
         
            +
                activesupport (6.0.3.2)
         
     | 
| 
       33 
13 
     | 
    
         
             
                  concurrent-ruby (~> 1.0, >= 1.0.2)
         
     | 
| 
       34 
14 
     | 
    
         
             
                  i18n (>= 0.7, < 2)
         
     | 
| 
       35 
15 
     | 
    
         
             
                  minitest (~> 5.1)
         
     | 
| 
       36 
16 
     | 
    
         
             
                  tzinfo (~> 1.1)
         
     | 
| 
       37 
17 
     | 
    
         
             
                  zeitwerk (~> 2.2, >= 2.2.2)
         
     | 
| 
       38 
     | 
    
         
            -
                aruba (1.0. 
     | 
| 
       39 
     | 
    
         
            -
                  childprocess ( 
     | 
| 
      
 18 
     | 
    
         
            +
                aruba (1.0.2)
         
     | 
| 
      
 19 
     | 
    
         
            +
                  childprocess (>= 2.0, < 5.0)
         
     | 
| 
       40 
20 
     | 
    
         
             
                  contracts (~> 0.16.0)
         
     | 
| 
       41 
21 
     | 
    
         
             
                  cucumber (>= 2.4, < 5.0)
         
     | 
| 
       42 
22 
     | 
    
         
             
                  ffi (~> 1.9)
         
     | 
| 
         @@ -44,7 +24,7 @@ GEM 
     | 
|
| 
       44 
24 
     | 
    
         
             
                  thor (~> 1.0)
         
     | 
| 
       45 
25 
     | 
    
         
             
                ast (2.4.1)
         
     | 
| 
       46 
26 
     | 
    
         
             
                builder (3.2.4)
         
     | 
| 
       47 
     | 
    
         
            -
                childprocess ( 
     | 
| 
      
 27 
     | 
    
         
            +
                childprocess (4.0.0)
         
     | 
| 
       48 
28 
     | 
    
         
             
                coderay (1.1.3)
         
     | 
| 
       49 
29 
     | 
    
         
             
                concurrent-ruby (1.1.6)
         
     | 
| 
       50 
30 
     | 
    
         
             
                contracts (0.16.0)
         
     | 
| 
         @@ -78,6 +58,7 @@ GEM 
     | 
|
| 
       78 
58 
     | 
    
         
             
                diff-lcs (1.3)
         
     | 
| 
       79 
59 
     | 
    
         
             
                ffi (1.13.1)
         
     | 
| 
       80 
60 
     | 
    
         
             
                formatador (0.2.5)
         
     | 
| 
      
 61 
     | 
    
         
            +
                gem-release (2.1.1)
         
     | 
| 
       81 
62 
     | 
    
         
             
                guard (2.16.2)
         
     | 
| 
       82 
63 
     | 
    
         
             
                  formatador (>= 0.2.4)
         
     | 
| 
       83 
64 
     | 
    
         
             
                  listen (>= 2.7, < 4.0)
         
     | 
| 
         @@ -92,16 +73,12 @@ GEM 
     | 
|
| 
       92 
73 
     | 
    
         
             
                  guard (~> 2.1)
         
     | 
| 
       93 
74 
     | 
    
         
             
                  guard-compat (~> 1.1)
         
     | 
| 
       94 
75 
     | 
    
         
             
                  rspec (>= 2.99.0, < 4.0)
         
     | 
| 
       95 
     | 
    
         
            -
                hirb (0.7.3)
         
     | 
| 
       96 
76 
     | 
    
         
             
                i18n (1.8.3)
         
     | 
| 
       97 
77 
     | 
    
         
             
                  concurrent-ruby (~> 1.0)
         
     | 
| 
       98 
78 
     | 
    
         
             
                listen (3.2.1)
         
     | 
| 
       99 
79 
     | 
    
         
             
                  rb-fsevent (~> 0.10, >= 0.10.3)
         
     | 
| 
       100 
80 
     | 
    
         
             
                  rb-inotify (~> 0.9, >= 0.9.10)
         
     | 
| 
       101 
     | 
    
         
            -
                lumberjack (1.2. 
     | 
| 
       102 
     | 
    
         
            -
                memoist (0.14.0)
         
     | 
| 
       103 
     | 
    
         
            -
                method_profiler (2.0.1)
         
     | 
| 
       104 
     | 
    
         
            -
                  hirb (>= 0.6.0)
         
     | 
| 
      
 81 
     | 
    
         
            +
                lumberjack (1.2.6)
         
     | 
| 
       105 
82 
     | 
    
         
             
                method_source (1.0.0)
         
     | 
| 
       106 
83 
     | 
    
         
             
                middleware (0.1.0)
         
     | 
| 
       107 
84 
     | 
    
         
             
                minitest (5.14.1)
         
     | 
| 
         @@ -110,10 +87,9 @@ GEM 
     | 
|
| 
       110 
87 
     | 
    
         
             
                notiffany (0.1.3)
         
     | 
| 
       111 
88 
     | 
    
         
             
                  nenv (~> 0.1)
         
     | 
| 
       112 
89 
     | 
    
         
             
                  shellany (~> 0.0)
         
     | 
| 
       113 
     | 
    
         
            -
                parallel (1.19. 
     | 
| 
       114 
     | 
    
         
            -
                parser (2.7.1. 
     | 
| 
       115 
     | 
    
         
            -
                  ast (~> 2.4. 
     | 
| 
       116 
     | 
    
         
            -
                progressbar (0.21.0)
         
     | 
| 
      
 90 
     | 
    
         
            +
                parallel (1.19.2)
         
     | 
| 
      
 91 
     | 
    
         
            +
                parser (2.7.1.4)
         
     | 
| 
      
 92 
     | 
    
         
            +
                  ast (~> 2.4.1)
         
     | 
| 
       117 
93 
     | 
    
         
             
                protobuf-cucumber (3.10.8)
         
     | 
| 
       118 
94 
     | 
    
         
             
                  activesupport (>= 3.2)
         
     | 
| 
       119 
95 
     | 
    
         
             
                  middleware
         
     | 
| 
         @@ -153,13 +129,11 @@ GEM 
     | 
|
| 
       153 
129 
     | 
    
         
             
                rubocop-ast (0.0.3)
         
     | 
| 
       154 
130 
     | 
    
         
             
                  parser (>= 2.7.0.1)
         
     | 
| 
       155 
131 
     | 
    
         
             
                ruby-progressbar (1.10.1)
         
     | 
| 
       156 
     | 
    
         
            -
                scrub_rb (1.0.1)
         
     | 
| 
       157 
132 
     | 
    
         
             
                shellany (0.0.1)
         
     | 
| 
       158 
133 
     | 
    
         
             
                sys-uname (1.2.1)
         
     | 
| 
       159 
134 
     | 
    
         
             
                  ffi (>= 1.0.0)
         
     | 
| 
       160 
135 
     | 
    
         
             
                thor (1.0.1)
         
     | 
| 
       161 
136 
     | 
    
         
             
                thread_safe (0.3.6)
         
     | 
| 
       162 
     | 
    
         
            -
                trollop (2.1.3)
         
     | 
| 
       163 
137 
     | 
    
         
             
                tzinfo (1.2.7)
         
     | 
| 
       164 
138 
     | 
    
         
             
                  thread_safe (~> 0.1)
         
     | 
| 
       165 
139 
     | 
    
         
             
                unicode-display_width (1.7.0)
         
     | 
| 
         @@ -169,19 +143,14 @@ PLATFORMS 
     | 
|
| 
       169 
143 
     | 
    
         
             
              ruby
         
     | 
| 
       170 
144 
     | 
    
         | 
| 
       171 
145 
     | 
    
         
             
            DEPENDENCIES
         
     | 
| 
       172 
     | 
    
         
            -
              aruba
         
     | 
| 
       173 
     | 
    
         
            -
               
     | 
| 
       174 
     | 
    
         
            -
              git_fame!
         
     | 
| 
      
 146 
     | 
    
         
            +
              aruba (~> 1.0)
         
     | 
| 
      
 147 
     | 
    
         
            +
              gem-release
         
     | 
| 
       175 
148 
     | 
    
         
             
              guard
         
     | 
| 
       176 
149 
     | 
    
         
             
              guard-rspec
         
     | 
| 
       177 
     | 
    
         
            -
               
     | 
| 
       178 
     | 
    
         
            -
              rake (~> 12.0)
         
     | 
| 
      
 150 
     | 
    
         
            +
              rake (~> 12.3)
         
     | 
| 
       179 
151 
     | 
    
         
             
              rfix!
         
     | 
| 
       180 
152 
     | 
    
         
             
              rspec (~> 3.0)
         
     | 
| 
       181 
153 
     | 
    
         
             
              rubocop (= 0.84)
         
     | 
| 
       182 
154 
     | 
    
         | 
| 
       183 
     | 
    
         
            -
            RUBY VERSION
         
     | 
| 
       184 
     | 
    
         
            -
               ruby 2.5.0p0
         
     | 
| 
       185 
     | 
    
         
            -
             
     | 
| 
       186 
155 
     | 
    
         
             
            BUNDLED WITH
         
     | 
| 
       187 
156 
     | 
    
         
             
               2.1.4
         
     |