rfix 1.0.7 → 1.0.8.pre.108
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 +8 -6
- 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 +56 -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 +29 -41
- data/lib/rfix.rb +15 -2
- data/lib/rfix/cmd.rb +5 -1
- data/lib/rfix/extensions/extensions.rb +40 -0
- data/lib/rfix/extensions/offense.rb +77 -0
- data/lib/rfix/formatter.rb +1 -24
- data/lib/rfix/gem_helper.rb +12 -0
- data/lib/rfix/git_helper.rb +3 -1
- data/lib/rfix/log.rb +2 -2
- data/lib/rfix/rake_helper.rb +56 -0
- data/lib/rfix/rfix.rb +87 -4
- data/lib/rfix/version.rb +1 -1
- data/resources/ps.png +0 -0
- data/rfix.gemspec +19 -12
- metadata +100 -47
- data/lib/rfix/extensions.rb +0 -92
data/bin/bundle
ADDED
@@ -0,0 +1,114 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
#
|
5
|
+
# This file was generated by Bundler.
|
6
|
+
#
|
7
|
+
# The application 'bundle' is installed as part of a gem, and
|
8
|
+
# this file is here to facilitate running it.
|
9
|
+
#
|
10
|
+
|
11
|
+
require "rubygems"
|
12
|
+
|
13
|
+
m = Module.new do
|
14
|
+
module_function
|
15
|
+
|
16
|
+
def invoked_as_script?
|
17
|
+
File.expand_path($0) == File.expand_path(__FILE__)
|
18
|
+
end
|
19
|
+
|
20
|
+
def env_var_version
|
21
|
+
ENV["BUNDLER_VERSION"]
|
22
|
+
end
|
23
|
+
|
24
|
+
def cli_arg_version
|
25
|
+
return unless invoked_as_script? # don't want to hijack other binstubs
|
26
|
+
return unless "update".start_with?(ARGV.first || " ") # must be running `bundle update`
|
27
|
+
bundler_version = nil
|
28
|
+
update_index = nil
|
29
|
+
ARGV.each_with_index do |a, i|
|
30
|
+
if update_index && update_index.succ == i && a =~ Gem::Version::ANCHORED_VERSION_PATTERN
|
31
|
+
bundler_version = a
|
32
|
+
end
|
33
|
+
next unless a =~ /\A--bundler(?:[= ](#{Gem::Version::VERSION_PATTERN}))?\z/
|
34
|
+
bundler_version = $1
|
35
|
+
update_index = i
|
36
|
+
end
|
37
|
+
bundler_version
|
38
|
+
end
|
39
|
+
|
40
|
+
def gemfile
|
41
|
+
gemfile = ENV["BUNDLE_GEMFILE"]
|
42
|
+
return gemfile if gemfile && !gemfile.empty?
|
43
|
+
|
44
|
+
File.expand_path("../../Gemfile", __FILE__)
|
45
|
+
end
|
46
|
+
|
47
|
+
def lockfile
|
48
|
+
lockfile =
|
49
|
+
case File.basename(gemfile)
|
50
|
+
when "gems.rb" then gemfile.sub(/\.rb$/, gemfile)
|
51
|
+
else "#{gemfile}.lock"
|
52
|
+
end
|
53
|
+
File.expand_path(lockfile)
|
54
|
+
end
|
55
|
+
|
56
|
+
def lockfile_version
|
57
|
+
return unless File.file?(lockfile)
|
58
|
+
lockfile_contents = File.read(lockfile)
|
59
|
+
return unless lockfile_contents =~ /\n\nBUNDLED WITH\n\s{2,}(#{Gem::Version::VERSION_PATTERN})\n/
|
60
|
+
Regexp.last_match(1)
|
61
|
+
end
|
62
|
+
|
63
|
+
def bundler_version
|
64
|
+
@bundler_version ||=
|
65
|
+
env_var_version || cli_arg_version ||
|
66
|
+
lockfile_version
|
67
|
+
end
|
68
|
+
|
69
|
+
def bundler_requirement
|
70
|
+
return "#{Gem::Requirement.default}.a" unless bundler_version
|
71
|
+
|
72
|
+
bundler_gem_version = Gem::Version.new(bundler_version)
|
73
|
+
|
74
|
+
requirement = bundler_gem_version.approximate_recommendation
|
75
|
+
|
76
|
+
return requirement unless Gem::Version.new(Gem::VERSION) < Gem::Version.new("2.7.0")
|
77
|
+
|
78
|
+
requirement += ".a" if bundler_gem_version.prerelease?
|
79
|
+
|
80
|
+
requirement
|
81
|
+
end
|
82
|
+
|
83
|
+
def load_bundler!
|
84
|
+
ENV["BUNDLE_GEMFILE"] ||= gemfile
|
85
|
+
|
86
|
+
activate_bundler
|
87
|
+
end
|
88
|
+
|
89
|
+
def activate_bundler
|
90
|
+
gem_error = activation_error_handling do
|
91
|
+
gem "bundler", bundler_requirement
|
92
|
+
end
|
93
|
+
return if gem_error.nil?
|
94
|
+
require_error = activation_error_handling do
|
95
|
+
require "bundler/version"
|
96
|
+
end
|
97
|
+
return if require_error.nil? && Gem::Requirement.new(bundler_requirement).satisfied_by?(Gem::Version.new(Bundler::VERSION))
|
98
|
+
warn "Activating bundler (#{bundler_requirement}) failed:\n#{gem_error.message}\n\nTo install the version of bundler this project requires, run `gem install bundler -v '#{bundler_requirement}'`"
|
99
|
+
exit 42
|
100
|
+
end
|
101
|
+
|
102
|
+
def activation_error_handling
|
103
|
+
yield
|
104
|
+
nil
|
105
|
+
rescue StandardError, LoadError => e
|
106
|
+
e
|
107
|
+
end
|
108
|
+
end
|
109
|
+
|
110
|
+
m.load_bundler!
|
111
|
+
|
112
|
+
if m.invoked_as_script?
|
113
|
+
load Gem.bin_path("bundler", "bundle")
|
114
|
+
end
|
data/bin/console
CHANGED
@@ -1,15 +1,29 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
5
|
-
|
4
|
+
#
|
5
|
+
# This file was generated by Bundler.
|
6
|
+
#
|
7
|
+
# The application 'console' is installed as part of a gem, and
|
8
|
+
# this file is here to facilitate running it.
|
9
|
+
#
|
6
10
|
|
7
|
-
|
8
|
-
|
11
|
+
require "pathname"
|
12
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
13
|
+
Pathname.new(__FILE__).realpath)
|
9
14
|
|
10
|
-
|
11
|
-
# require "pry"
|
12
|
-
# Pry.start
|
15
|
+
bundle_binstub = File.expand_path("../bundle", __FILE__)
|
13
16
|
|
14
|
-
|
15
|
-
|
17
|
+
if File.file?(bundle_binstub)
|
18
|
+
if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
|
19
|
+
load(bundle_binstub)
|
20
|
+
else
|
21
|
+
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
22
|
+
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
require "rubygems"
|
27
|
+
require "bundler/setup"
|
28
|
+
|
29
|
+
load Gem.bin_path("git_fame", "console")
|
data/bin/guard
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
#
|
5
|
+
# This file was generated by Bundler.
|
6
|
+
#
|
7
|
+
# The application 'guard' is installed as part of a gem, and
|
8
|
+
# this file is here to facilitate running it.
|
9
|
+
#
|
10
|
+
|
11
|
+
require "pathname"
|
12
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
13
|
+
Pathname.new(__FILE__).realpath)
|
14
|
+
|
15
|
+
bundle_binstub = File.expand_path("../bundle", __FILE__)
|
16
|
+
|
17
|
+
if File.file?(bundle_binstub)
|
18
|
+
if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
|
19
|
+
load(bundle_binstub)
|
20
|
+
else
|
21
|
+
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
22
|
+
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
require "rubygems"
|
27
|
+
require "bundler/setup"
|
28
|
+
|
29
|
+
load Gem.bin_path("guard", "guard")
|
data/bin/rake
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
#
|
5
|
+
# This file was generated by Bundler.
|
6
|
+
#
|
7
|
+
# The application 'rake' is installed as part of a gem, and
|
8
|
+
# this file is here to facilitate running it.
|
9
|
+
#
|
10
|
+
|
11
|
+
require "pathname"
|
12
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
13
|
+
Pathname.new(__FILE__).realpath)
|
14
|
+
|
15
|
+
bundle_binstub = File.expand_path("../bundle", __FILE__)
|
16
|
+
|
17
|
+
if File.file?(bundle_binstub)
|
18
|
+
if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
|
19
|
+
load(bundle_binstub)
|
20
|
+
else
|
21
|
+
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
22
|
+
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
require "rubygems"
|
27
|
+
require "bundler/setup"
|
28
|
+
|
29
|
+
load Gem.bin_path("rake", "rake")
|
data/bin/rfix
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
#
|
5
|
+
# This file was generated by Bundler.
|
6
|
+
#
|
7
|
+
# The application 'rfix' is installed as part of a gem, and
|
8
|
+
# this file is here to facilitate running it.
|
9
|
+
#
|
10
|
+
|
11
|
+
require "pathname"
|
12
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
13
|
+
Pathname.new(__FILE__).realpath)
|
14
|
+
|
15
|
+
bundle_binstub = File.expand_path("../bundle", __FILE__)
|
16
|
+
|
17
|
+
if File.file?(bundle_binstub)
|
18
|
+
if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
|
19
|
+
load(bundle_binstub)
|
20
|
+
else
|
21
|
+
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
22
|
+
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
require "rubygems"
|
27
|
+
require "bundler/setup"
|
28
|
+
|
29
|
+
load Gem.bin_path("rfix", "rfix")
|
data/bin/rspec
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
#
|
5
|
+
# This file was generated by Bundler.
|
6
|
+
#
|
7
|
+
# The application 'rspec' is installed as part of a gem, and
|
8
|
+
# this file is here to facilitate running it.
|
9
|
+
#
|
10
|
+
|
11
|
+
require "pathname"
|
12
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
13
|
+
Pathname.new(__FILE__).realpath)
|
14
|
+
|
15
|
+
bundle_binstub = File.expand_path("../bundle", __FILE__)
|
16
|
+
|
17
|
+
if File.file?(bundle_binstub)
|
18
|
+
if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
|
19
|
+
load(bundle_binstub)
|
20
|
+
else
|
21
|
+
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
22
|
+
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
require "rubygems"
|
27
|
+
require "bundler/setup"
|
28
|
+
|
29
|
+
load Gem.bin_path("rspec-core", "rspec")
|
data/bin/setup
CHANGED
@@ -1,8 +1,29 @@
|
|
1
|
-
#!/usr/bin/env
|
2
|
-
|
3
|
-
IFS=$'\n\t'
|
4
|
-
set -vx
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
5
3
|
|
6
|
-
|
4
|
+
#
|
5
|
+
# This file was generated by Bundler.
|
6
|
+
#
|
7
|
+
# The application 'setup' is installed as part of a gem, and
|
8
|
+
# this file is here to facilitate running it.
|
9
|
+
#
|
7
10
|
|
8
|
-
|
11
|
+
require "pathname"
|
12
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
13
|
+
Pathname.new(__FILE__).realpath)
|
14
|
+
|
15
|
+
bundle_binstub = File.expand_path("../bundle", __FILE__)
|
16
|
+
|
17
|
+
if File.file?(bundle_binstub)
|
18
|
+
if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
|
19
|
+
load(bundle_binstub)
|
20
|
+
else
|
21
|
+
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
22
|
+
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
require "rubygems"
|
27
|
+
require "bundler/setup"
|
28
|
+
|
29
|
+
load Gem.bin_path("git_fame", "setup")
|
data/ci/Gemfile.rubocop-0.80
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
eval_gemfile("../Gemfile")
|
1
|
+
eval_gemfile(File.join(__dir__, "../Gemfile.base"))
|
2
2
|
gem "rubocop", "0.80"
|
@@ -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, < 1.7)
|
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.6.1)
|
@@ -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.80)
|
181
153
|
|
182
|
-
RUBY VERSION
|
183
|
-
ruby 2.5.0p0
|
184
|
-
|
185
154
|
BUNDLED WITH
|
186
155
|
2.1.4
|