rfix 1.0.15 → 1.1.0.pre.147

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.
Files changed (79) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +5 -0
  3. data/.rspec +0 -1
  4. data/.rubocop.yml +46 -31
  5. data/.travis.yml +5 -12
  6. data/Gemfile.base +10 -3
  7. data/Gemfile.base.lock +172 -0
  8. data/Gemfile.lock +28 -7
  9. data/Guardfile +1 -1
  10. data/Makefile +4 -13
  11. data/Rakefile +16 -95
  12. data/ci/Gemfile.rubocop-0.80.lock +16 -1
  13. data/ci/Gemfile.rubocop-0.81.lock +16 -1
  14. data/ci/Gemfile.rubocop-0.82.lock +16 -1
  15. data/ci/Gemfile.rubocop-0.83.lock +19 -4
  16. data/ci/Gemfile.rubocop-0.84.lock +19 -4
  17. data/ci/Gemfile.rubocop-0.85.1.lock +19 -4
  18. data/ci/Gemfile.rubocop-0.85.lock +16 -1
  19. data/exe/rfix +18 -144
  20. data/lib/rfix.rb +10 -3
  21. data/lib/rfix/box.rb +112 -0
  22. data/lib/rfix/branch.rb +30 -0
  23. data/lib/rfix/branches/base.rb +29 -0
  24. data/lib/rfix/branches/head.rb +11 -0
  25. data/lib/rfix/branches/main.rb +33 -0
  26. data/lib/rfix/branches/name.rb +21 -0
  27. data/lib/rfix/branches/reference.rb +19 -0
  28. data/lib/rfix/branches/upstream.rb +11 -0
  29. data/lib/rfix/cmd.rb +9 -14
  30. data/lib/rfix/commands/all.rb +26 -0
  31. data/lib/rfix/commands/branch.rb +15 -0
  32. data/lib/rfix/commands/extensions/options.rb +8 -0
  33. data/lib/rfix/commands/help.rb +7 -0
  34. data/lib/rfix/commands/helper/args.rb +137 -0
  35. data/lib/rfix/commands/helper/help.rb +6 -0
  36. data/lib/rfix/commands/helper/loader.rb +6 -0
  37. data/lib/rfix/commands/helper/option.rb +0 -0
  38. data/lib/rfix/commands/helper/params.rb +0 -0
  39. data/lib/rfix/commands/helper/rubocop.rb +17 -0
  40. data/lib/rfix/commands/info.rb +30 -0
  41. data/lib/rfix/commands/lint.rb +23 -0
  42. data/lib/rfix/commands/local.rb +12 -0
  43. data/lib/rfix/commands/origin.rb +19 -0
  44. data/lib/rfix/commands/setup.rb +29 -0
  45. data/lib/rfix/commands/welcome.rb +24 -0
  46. data/lib/rfix/deleted.rb +13 -0
  47. data/lib/rfix/error.rb +2 -0
  48. data/lib/rfix/extensions/extensions.rb +4 -26
  49. data/lib/rfix/extensions/offense.rb +2 -1
  50. data/lib/rfix/extensions/string.rb +8 -0
  51. data/lib/rfix/file.rb +46 -0
  52. data/lib/rfix/file_cache.rb +59 -0
  53. data/lib/rfix/formatter.rb +37 -10
  54. data/lib/rfix/git_helper.rb +13 -1
  55. data/lib/rfix/log.rb +104 -7
  56. data/lib/rfix/no_file.rb +13 -0
  57. data/lib/rfix/rake/paths.rb +50 -0
  58. data/lib/rfix/rake/support.rb +75 -0
  59. data/lib/rfix/repository.rb +201 -0
  60. data/lib/rfix/rfix.rb +7 -198
  61. data/lib/rfix/tracked.rb +76 -0
  62. data/lib/rfix/tracked_file.rb +1 -1
  63. data/lib/rfix/untracked.rb +13 -0
  64. data/lib/rfix/version.rb +1 -1
  65. data/path.rb +7 -0
  66. data/rfix.gemspec +6 -2
  67. data/rugged.rb +206 -0
  68. data/tasks/bump.rake +11 -0
  69. data/tasks/bundle.rake +17 -0
  70. data/tasks/complex.rake +54 -0
  71. data/tasks/simple.rake +58 -0
  72. data/tasks/travis.rake +74 -0
  73. data/tasks/vendor.rake +34 -0
  74. metadata +136 -13
  75. data/file.rb +0 -1
  76. data/lib/rfix/gem_helper.rb +0 -12
  77. data/lib/rfix/git_file.rb +0 -36
  78. data/lib/rfix/rake_helper.rb +0 -56
  79. data/lib/rfix/untracked_file.rb +0 -13
data/Guardfile CHANGED
@@ -1,5 +1,5 @@
1
1
  # --only-failures --next-failure
2
- guard :rspec, cmd: "bundle exec rspec --fail-fast", all_on_start: true, all_after_pass: true do
2
+ guard :rspec, cmd: "bundle exec rspec", all_on_start: true, all_after_pass: true do
3
3
  require "guard/rspec/dsl"
4
4
  dsl = Guard::RSpec::Dsl.new(self)
5
5
 
data/Makefile CHANGED
@@ -1,13 +1,4 @@
1
- FAME=vendor/oleander/git-fame-rb
2
- CLI=vendor/shopify/cli-ui
3
- dir:
4
- mkdir -p vendor
5
- rm -rf vendor/shopify
6
- rm -rf vendor/oleander
7
- mkdir -p vendor/shopify
8
- mkdir -p vendor/oleander
9
- fetch:
10
- git clone https://github.com/shopify/cli-ui $(CLI)
11
- git --git-dir $(CLI)/.git --work-tree $(CLI) reset --hard ef976df676f4
12
- git clone https://github.com/oleander/git-fame-rb $(FAME)
13
- git --git-dir $(FAME)/.git --work-tree $(FAME) reset --hard a9b9c25bbab1
1
+ install:
2
+ brew install cmake pkg-config libgit2 safe-rm
3
+ gem install colorize rake
4
+ rake build
data/Rakefile CHANGED
@@ -1,106 +1,27 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'bundler/gem_tasks'
3
+ require "bundler/gem_tasks"
4
4
  require 'rspec/core/rake_task'
5
- require 'fileutils'
6
- require "rfix"
7
- require_relative "lib/rfix/rake_helper"
5
+ require_relative "lib/rfix/rake/paths"
6
+ require_relative "lib/rfix/rake/support"
8
7
 
9
- RSpec::Core::RakeTask.new(:spec)
10
- extend RakeHelper
8
+ Dir[File.join(__dir__, "tasks/*")].each(&method(:load))
11
9
 
12
- task default: :spec
10
+ extend Rfix::Support
13
11
 
14
- desc "Install gems not in the gemspec or gemfile"
15
- namespace :vendor do
16
- task :download do
17
- say "Download external gems, hold on ..."
18
- clone(github: "shopify/cli-ui", ref: "ef976df676f4")
19
- clone(github: "oleander/git-fame-rb", ref: "a9b9c25bbab1")
20
- end
21
-
22
- task :clear do
23
- say "Remove and create vendor folder"
24
- FileUtils.remove_dir("vendor/shopify")
25
- FileUtils.remove_dir("vendor/oleander")
26
- end
27
- end
28
-
29
- desc "Install dependencies in the correct order"
30
- namespace :bundle do
31
- task :install do
32
- say "Running {{command:bundle install}} with gemspec"
33
- cmd "bundle install"
34
- end
12
+ desc "Remove and create tmp file"
13
+ task :clear do
14
+ rm_rf Bundle::TMP
35
15
  end
36
16
 
17
+ desc "Rebuild vendor and bundles"
18
+ task rebuild: [:clear, Vendor::REBUILD, Bundle::REBUILD]
37
19
 
38
- desc "Set user.* for global git user"
39
- namespace :git do
40
- task :config do
41
- cmd("git config --global user.email hello@world.com")
42
- cmd("git config --global user.name John Doe")
43
- result = cmd("git config --global -l").first
44
- say "Git config set to {{yellow:#{result}}}"
45
- end
46
-
47
- namespace :install do
48
- task :osx do
49
- say "Installing git on OS X"
50
- cmd("brew install #{brew_url(ref: "140da7e09919887e1040f726db22dafd0cffe4d9")}")
51
- end
52
-
53
- task :linux do
54
- say("Skip linux for now")
55
- end
56
-
57
- task :guess do
58
- osx? ? Rake::Task["git:install:osx"].invoke : Rake::Task["git:install:linux"].invoke
59
- end
60
- end
61
- end
62
-
63
- namespace :gemfile do
64
- task :update do
65
- gemfiles.each do |gemfile|
66
- say "Update #{gemfile}"
67
- cmd("bundle", "update", "--gemfile", gemfile)
68
- end
69
- end
20
+ desc "Build bundles for testing"
21
+ task Bundle::BUILD => [Bundle::Complex::BUILD, Bundle::Simple::BUILD]
70
22
 
71
- namespace :locks do
72
- task :clear do
73
- gemlocks.each do |lock|
74
- say "Remove #{lock}"
75
- FileUtils.remove_file(lock, true)
76
- end
77
- end
78
- end
79
-
80
- task :install do
81
- gemfiles.each do |gemfile|
82
- say "Bundle install #{gemfile}"
83
- cmd("bundle", "install", "--gemfile", gemfile)
84
- end
85
- end
86
-
87
- task commit: :update do
88
- cmd("git", "commit", "-a", "-m", "Ran bundle install")
89
- end
90
- end
91
-
92
- task :rehash do
93
- cmd("rbenv", "rehash")
94
- end
95
-
96
- task :bump do
97
- cmd("gem", "bump", "-c", "-m", "Bump version to %{version}")
98
- cmd("bundle", "install")
99
- cmd("git add Gemfile.lock")
100
- cmd("git commit --amend --no-edit")
101
- end
23
+ desc "Rebuild bundles for testing"
24
+ task Bundle::REBUILD => [Bundle::Complex::REBUILD, Bundle::Simple::REBUILD]
102
25
 
103
- task clear: ["vendor:clear", "gemfile:locks:clear"]
104
- task setup: ["vendor:download", "gemfile:install", "gemfile:update"]
105
- task local: [:setup, :install]
106
- task reset: [:clear, :setup]
26
+ # desc "Bump to a new version of rfix"
27
+ task bump: "gem:bump"
@@ -1,10 +1,13 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rfix (1.0.8)
4
+ rfix (1.0.20)
5
+ cri (~> 2.15.10)
6
+ listen (~> 3.0)
5
7
  rainbow (~> 3.0)
6
8
  rouge (~> 3.20)
7
9
  rubocop (>= 0.80)
10
+ rugged (~> 1.0.0)
8
11
 
9
12
  GEM
10
13
  remote: https://rubygems.org/
@@ -26,8 +29,10 @@ GEM
26
29
  builder (3.2.4)
27
30
  childprocess (4.0.0)
28
31
  coderay (1.1.3)
32
+ colorize (0.8.1)
29
33
  concurrent-ruby (1.1.6)
30
34
  contracts (0.16.0)
35
+ cri (2.15.10)
31
36
  cucumber (4.0.0)
32
37
  builder (~> 3.2, >= 3.2.3)
33
38
  cucumber-core (~> 7.0, >= 7.0.0)
@@ -56,9 +61,13 @@ GEM
56
61
  cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
57
62
  cucumber-messages (~> 12.1, >= 12.1.1)
58
63
  diff-lcs (1.3)
64
+ faker (2.13.0)
65
+ i18n (>= 1.6, < 2)
59
66
  ffi (1.13.1)
60
67
  formatador (0.2.5)
61
68
  gem-release (2.1.1)
69
+ git (1.7.0)
70
+ rchardet (~> 1.8)
62
71
  guard (2.16.2)
63
72
  formatador (>= 0.2.4)
64
73
  listen (>= 2.7, < 4.0)
@@ -104,6 +113,7 @@ GEM
104
113
  rb-fsevent (0.10.4)
105
114
  rb-inotify (0.10.1)
106
115
  ffi (~> 1.0)
116
+ rchardet (1.8.0)
107
117
  rexml (3.2.4)
108
118
  rouge (3.20.0)
109
119
  rspec (3.9.0)
@@ -128,6 +138,7 @@ GEM
128
138
  ruby-progressbar (~> 1.7)
129
139
  unicode-display_width (>= 1.4.0, < 1.7)
130
140
  ruby-progressbar (1.10.1)
141
+ rugged (1.0.1)
131
142
  shellany (0.0.1)
132
143
  sys-uname (1.2.1)
133
144
  ffi (>= 1.0.0)
@@ -143,9 +154,13 @@ PLATFORMS
143
154
 
144
155
  DEPENDENCIES
145
156
  aruba (~> 1.0)
157
+ colorize
158
+ faker
146
159
  gem-release
160
+ git (~> 1.7.0)
147
161
  guard
148
162
  guard-rspec
163
+ pry
149
164
  rake (~> 12.3)
150
165
  rfix!
151
166
  rspec (~> 3.0)
@@ -1,10 +1,13 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rfix (1.0.8)
4
+ rfix (1.0.20)
5
+ cri (~> 2.15.10)
6
+ listen (~> 3.0)
5
7
  rainbow (~> 3.0)
6
8
  rouge (~> 3.20)
7
9
  rubocop (>= 0.80)
10
+ rugged (~> 1.0.0)
8
11
 
9
12
  GEM
10
13
  remote: https://rubygems.org/
@@ -26,8 +29,10 @@ GEM
26
29
  builder (3.2.4)
27
30
  childprocess (4.0.0)
28
31
  coderay (1.1.3)
32
+ colorize (0.8.1)
29
33
  concurrent-ruby (1.1.6)
30
34
  contracts (0.16.0)
35
+ cri (2.15.10)
31
36
  cucumber (4.0.0)
32
37
  builder (~> 3.2, >= 3.2.3)
33
38
  cucumber-core (~> 7.0, >= 7.0.0)
@@ -56,9 +61,13 @@ GEM
56
61
  cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
57
62
  cucumber-messages (~> 12.1, >= 12.1.1)
58
63
  diff-lcs (1.3)
64
+ faker (2.13.0)
65
+ i18n (>= 1.6, < 2)
59
66
  ffi (1.13.1)
60
67
  formatador (0.2.5)
61
68
  gem-release (2.1.1)
69
+ git (1.7.0)
70
+ rchardet (~> 1.8)
62
71
  guard (2.16.2)
63
72
  formatador (>= 0.2.4)
64
73
  listen (>= 2.7, < 4.0)
@@ -104,6 +113,7 @@ GEM
104
113
  rb-fsevent (0.10.4)
105
114
  rb-inotify (0.10.1)
106
115
  ffi (~> 1.0)
116
+ rchardet (1.8.0)
107
117
  rexml (3.2.4)
108
118
  rouge (3.20.0)
109
119
  rspec (3.9.0)
@@ -128,6 +138,7 @@ GEM
128
138
  ruby-progressbar (~> 1.7)
129
139
  unicode-display_width (>= 1.4.0, < 2.0)
130
140
  ruby-progressbar (1.10.1)
141
+ rugged (1.0.1)
131
142
  shellany (0.0.1)
132
143
  sys-uname (1.2.1)
133
144
  ffi (>= 1.0.0)
@@ -143,9 +154,13 @@ PLATFORMS
143
154
 
144
155
  DEPENDENCIES
145
156
  aruba (~> 1.0)
157
+ colorize
158
+ faker
146
159
  gem-release
160
+ git (~> 1.7.0)
147
161
  guard
148
162
  guard-rspec
163
+ pry
149
164
  rake (~> 12.3)
150
165
  rfix!
151
166
  rspec (~> 3.0)
@@ -1,10 +1,13 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rfix (1.0.8)
4
+ rfix (1.0.20)
5
+ cri (~> 2.15.10)
6
+ listen (~> 3.0)
5
7
  rainbow (~> 3.0)
6
8
  rouge (~> 3.20)
7
9
  rubocop (>= 0.80)
10
+ rugged (~> 1.0.0)
8
11
 
9
12
  GEM
10
13
  remote: https://rubygems.org/
@@ -26,8 +29,10 @@ GEM
26
29
  builder (3.2.4)
27
30
  childprocess (4.0.0)
28
31
  coderay (1.1.3)
32
+ colorize (0.8.1)
29
33
  concurrent-ruby (1.1.6)
30
34
  contracts (0.16.0)
35
+ cri (2.15.10)
31
36
  cucumber (4.0.0)
32
37
  builder (~> 3.2, >= 3.2.3)
33
38
  cucumber-core (~> 7.0, >= 7.0.0)
@@ -56,9 +61,13 @@ GEM
56
61
  cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
57
62
  cucumber-messages (~> 12.1, >= 12.1.1)
58
63
  diff-lcs (1.3)
64
+ faker (2.13.0)
65
+ i18n (>= 1.6, < 2)
59
66
  ffi (1.13.1)
60
67
  formatador (0.2.5)
61
68
  gem-release (2.1.1)
69
+ git (1.7.0)
70
+ rchardet (~> 1.8)
62
71
  guard (2.16.2)
63
72
  formatador (>= 0.2.4)
64
73
  listen (>= 2.7, < 4.0)
@@ -104,6 +113,7 @@ GEM
104
113
  rb-fsevent (0.10.4)
105
114
  rb-inotify (0.10.1)
106
115
  ffi (~> 1.0)
116
+ rchardet (1.8.0)
107
117
  rexml (3.2.4)
108
118
  rouge (3.20.0)
109
119
  rspec (3.9.0)
@@ -128,6 +138,7 @@ GEM
128
138
  ruby-progressbar (~> 1.7)
129
139
  unicode-display_width (>= 1.4.0, < 2.0)
130
140
  ruby-progressbar (1.10.1)
141
+ rugged (1.0.1)
131
142
  shellany (0.0.1)
132
143
  sys-uname (1.2.1)
133
144
  ffi (>= 1.0.0)
@@ -143,9 +154,13 @@ PLATFORMS
143
154
 
144
155
  DEPENDENCIES
145
156
  aruba (~> 1.0)
157
+ colorize
158
+ faker
146
159
  gem-release
160
+ git (~> 1.7.0)
147
161
  guard
148
162
  guard-rspec
163
+ pry
149
164
  rake (~> 12.3)
150
165
  rfix!
151
166
  rspec (~> 3.0)
@@ -1,10 +1,13 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rfix (1.0.8)
4
+ rfix (1.0.20)
5
+ cri (~> 2.15.10)
6
+ listen (~> 3.0)
5
7
  rainbow (~> 3.0)
6
8
  rouge (~> 3.20)
7
9
  rubocop (>= 0.80)
10
+ rugged (~> 1.0.0)
8
11
 
9
12
  GEM
10
13
  remote: https://rubygems.org/
@@ -26,9 +29,11 @@ GEM
26
29
  builder (3.2.4)
27
30
  childprocess (4.0.0)
28
31
  coderay (1.1.3)
32
+ colorize (0.8.1)
29
33
  concurrent-ruby (1.1.6)
30
34
  contracts (0.16.0)
31
- cucumber (4.0.0)
35
+ cri (2.15.10)
36
+ cucumber (4.0.1)
32
37
  builder (~> 3.2, >= 3.2.3)
33
38
  cucumber-core (~> 7.0, >= 7.0.0)
34
39
  cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
@@ -36,14 +41,14 @@ GEM
36
41
  cucumber-html-formatter (~> 6.0, >= 6.0.1)
37
42
  cucumber-messages (~> 12.1, >= 12.1.1)
38
43
  cucumber-wire (~> 3.0, >= 3.0.0)
39
- diff-lcs (~> 1.3, >= 1.3)
44
+ diff-lcs (~> 1.3, >= 1.3, < 1.4)
40
45
  multi_test (~> 0.1, >= 0.1.2)
41
46
  sys-uname (~> 1.0, >= 1.0.2)
42
47
  cucumber-core (7.0.0)
43
48
  cucumber-gherkin (~> 13.0, >= 13.0.0)
44
49
  cucumber-messages (~> 12.1, >= 12.1.1)
45
50
  cucumber-tag-expressions (~> 2.0, >= 2.0.4)
46
- cucumber-cucumber-expressions (10.2.0)
51
+ cucumber-cucumber-expressions (10.2.1)
47
52
  cucumber-gherkin (13.0.0)
48
53
  cucumber-messages (~> 12.0, >= 12.0.0)
49
54
  cucumber-html-formatter (6.0.3)
@@ -56,9 +61,13 @@ GEM
56
61
  cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
57
62
  cucumber-messages (~> 12.1, >= 12.1.1)
58
63
  diff-lcs (1.3)
64
+ faker (2.13.0)
65
+ i18n (>= 1.6, < 2)
59
66
  ffi (1.13.1)
60
67
  formatador (0.2.5)
61
68
  gem-release (2.1.1)
69
+ git (1.7.0)
70
+ rchardet (~> 1.8)
62
71
  guard (2.16.2)
63
72
  formatador (>= 0.2.4)
64
73
  listen (>= 2.7, < 4.0)
@@ -103,6 +112,7 @@ GEM
103
112
  rb-fsevent (0.10.4)
104
113
  rb-inotify (0.10.1)
105
114
  ffi (~> 1.0)
115
+ rchardet (1.8.0)
106
116
  rexml (3.2.4)
107
117
  rouge (3.20.0)
108
118
  rspec (3.9.0)
@@ -126,6 +136,7 @@ GEM
126
136
  ruby-progressbar (~> 1.7)
127
137
  unicode-display_width (>= 1.4.0, < 2.0)
128
138
  ruby-progressbar (1.10.1)
139
+ rugged (1.0.1)
129
140
  shellany (0.0.1)
130
141
  sys-uname (1.2.1)
131
142
  ffi (>= 1.0.0)
@@ -141,9 +152,13 @@ PLATFORMS
141
152
 
142
153
  DEPENDENCIES
143
154
  aruba (~> 1.0)
155
+ colorize
156
+ faker
144
157
  gem-release
158
+ git (~> 1.7.0)
145
159
  guard
146
160
  guard-rspec
161
+ pry
147
162
  rake (~> 12.3)
148
163
  rfix!
149
164
  rspec (~> 3.0)
@@ -1,10 +1,13 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rfix (1.0.8)
4
+ rfix (1.0.20)
5
+ cri (~> 2.15.10)
6
+ listen (~> 3.0)
5
7
  rainbow (~> 3.0)
6
8
  rouge (~> 3.20)
7
9
  rubocop (>= 0.80)
10
+ rugged (~> 1.0.0)
8
11
 
9
12
  GEM
10
13
  remote: https://rubygems.org/
@@ -26,9 +29,11 @@ GEM
26
29
  builder (3.2.4)
27
30
  childprocess (4.0.0)
28
31
  coderay (1.1.3)
32
+ colorize (0.8.1)
29
33
  concurrent-ruby (1.1.6)
30
34
  contracts (0.16.0)
31
- cucumber (4.0.0)
35
+ cri (2.15.10)
36
+ cucumber (4.0.1)
32
37
  builder (~> 3.2, >= 3.2.3)
33
38
  cucumber-core (~> 7.0, >= 7.0.0)
34
39
  cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
@@ -36,14 +41,14 @@ GEM
36
41
  cucumber-html-formatter (~> 6.0, >= 6.0.1)
37
42
  cucumber-messages (~> 12.1, >= 12.1.1)
38
43
  cucumber-wire (~> 3.0, >= 3.0.0)
39
- diff-lcs (~> 1.3, >= 1.3)
44
+ diff-lcs (~> 1.3, >= 1.3, < 1.4)
40
45
  multi_test (~> 0.1, >= 0.1.2)
41
46
  sys-uname (~> 1.0, >= 1.0.2)
42
47
  cucumber-core (7.0.0)
43
48
  cucumber-gherkin (~> 13.0, >= 13.0.0)
44
49
  cucumber-messages (~> 12.1, >= 12.1.1)
45
50
  cucumber-tag-expressions (~> 2.0, >= 2.0.4)
46
- cucumber-cucumber-expressions (10.2.0)
51
+ cucumber-cucumber-expressions (10.2.1)
47
52
  cucumber-gherkin (13.0.0)
48
53
  cucumber-messages (~> 12.0, >= 12.0.0)
49
54
  cucumber-html-formatter (6.0.3)
@@ -56,9 +61,13 @@ GEM
56
61
  cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
57
62
  cucumber-messages (~> 12.1, >= 12.1.1)
58
63
  diff-lcs (1.3)
64
+ faker (2.13.0)
65
+ i18n (>= 1.6, < 2)
59
66
  ffi (1.13.1)
60
67
  formatador (0.2.5)
61
68
  gem-release (2.1.1)
69
+ git (1.7.0)
70
+ rchardet (~> 1.8)
62
71
  guard (2.16.2)
63
72
  formatador (>= 0.2.4)
64
73
  listen (>= 2.7, < 4.0)
@@ -103,6 +112,7 @@ GEM
103
112
  rb-fsevent (0.10.4)
104
113
  rb-inotify (0.10.1)
105
114
  ffi (~> 1.0)
115
+ rchardet (1.8.0)
106
116
  rexml (3.2.4)
107
117
  rouge (3.20.0)
108
118
  rspec (3.9.0)
@@ -129,6 +139,7 @@ GEM
129
139
  rubocop-ast (0.0.3)
130
140
  parser (>= 2.7.0.1)
131
141
  ruby-progressbar (1.10.1)
142
+ rugged (1.0.1)
132
143
  shellany (0.0.1)
133
144
  sys-uname (1.2.1)
134
145
  ffi (>= 1.0.0)
@@ -144,9 +155,13 @@ PLATFORMS
144
155
 
145
156
  DEPENDENCIES
146
157
  aruba (~> 1.0)
158
+ colorize
159
+ faker
147
160
  gem-release
161
+ git (~> 1.7.0)
148
162
  guard
149
163
  guard-rspec
164
+ pry
150
165
  rake (~> 12.3)
151
166
  rfix!
152
167
  rspec (~> 3.0)