rfix 1.4.1 → 2.0.0

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 (219) hide show
  1. checksums.yaml +4 -4
  2. data/exe/rfix +78 -34
  3. data/lib/rfix.rb +17 -28
  4. data/lib/rfix/branch.rb +3 -25
  5. data/lib/rfix/branch/base.rb +27 -0
  6. data/lib/rfix/branch/head.rb +15 -0
  7. data/lib/rfix/branch/main.rb +33 -0
  8. data/lib/rfix/branch/name.rb +21 -0
  9. data/lib/rfix/branch/reference.rb +15 -0
  10. data/lib/rfix/branch/upstream.rb +17 -0
  11. data/lib/rfix/cli/command.rb +19 -0
  12. data/lib/rfix/cli/command/base.rb +61 -0
  13. data/lib/rfix/cli/command/branch.rb +13 -0
  14. data/lib/rfix/cli/command/config.rb +22 -0
  15. data/lib/rfix/cli/command/extension.rb +25 -0
  16. data/lib/rfix/cli/command/help.rb +11 -0
  17. data/lib/rfix/cli/command/info.rb +11 -0
  18. data/lib/rfix/cli/command/lint.rb +17 -0
  19. data/lib/rfix/cli/command/local.rb +11 -0
  20. data/lib/rfix/cli/command/origin.rb +11 -0
  21. data/lib/rfix/cli/command/setup.rb +11 -0
  22. data/lib/rfix/error.rb +5 -1
  23. data/lib/rfix/extension/offense.rb +79 -0
  24. data/lib/rfix/extension/pastel.rb +11 -0
  25. data/lib/rfix/extension/string.rb +12 -0
  26. data/lib/rfix/extension/strings.rb +9 -0
  27. data/lib/rfix/file.rb +6 -41
  28. data/lib/rfix/file/base.rb +73 -0
  29. data/lib/rfix/file/deleted.rb +17 -0
  30. data/lib/rfix/file/ignored.rb +17 -0
  31. data/lib/rfix/file/tracked.rb +42 -0
  32. data/lib/rfix/file/untracked.rb +20 -0
  33. data/lib/rfix/formatter.rb +125 -86
  34. data/lib/rfix/highlighter.rb +118 -0
  35. data/lib/rfix/indicator.rb +19 -0
  36. data/lib/rfix/log.rb +12 -121
  37. data/lib/rfix/rake/gemfile.rb +111 -0
  38. data/lib/rfix/rake/paths.rb +25 -23
  39. data/lib/rfix/rake/support.rb +72 -57
  40. data/lib/rfix/repository.rb +114 -164
  41. data/lib/rfix/types.rb +52 -0
  42. data/lib/rfix/version.rb +1 -1
  43. data/rfix.gemspec +28 -38
  44. data/vendor/dry-cli/CHANGELOG.md +191 -0
  45. data/vendor/dry-cli/CODEOWNERS +1 -0
  46. data/vendor/dry-cli/CODE_OF_CONDUCT.md +13 -0
  47. data/vendor/dry-cli/CONTRIBUTING.md +29 -0
  48. data/vendor/dry-cli/Gemfile +14 -0
  49. data/vendor/dry-cli/Gemfile.devtools +18 -0
  50. data/vendor/dry-cli/LICENSE +20 -0
  51. data/vendor/dry-cli/README.md +29 -0
  52. data/vendor/dry-cli/Rakefile +13 -0
  53. data/vendor/dry-cli/bin/console +15 -0
  54. data/vendor/dry-cli/bin/setup +8 -0
  55. data/vendor/dry-cli/changelog.yml +97 -0
  56. data/vendor/dry-cli/docsite/source/arguments.html.md +57 -0
  57. data/vendor/dry-cli/docsite/source/callbacks.html.md +51 -0
  58. data/vendor/dry-cli/docsite/source/commands-with-subcommands-and-params.md +86 -0
  59. data/vendor/dry-cli/docsite/source/commands.html.md +41 -0
  60. data/vendor/dry-cli/docsite/source/index.html.md +302 -0
  61. data/vendor/dry-cli/docsite/source/options.html.md +51 -0
  62. data/vendor/dry-cli/docsite/source/subcommands.html.md +38 -0
  63. data/vendor/dry-cli/docsite/source/variadic-arguments.html.md +45 -0
  64. data/vendor/dry-cli/dry-cli.gemspec +36 -0
  65. data/vendor/dry-cli/lib/dry/cli.rb +224 -0
  66. data/vendor/dry-cli/lib/dry/cli/banner.rb +135 -0
  67. data/vendor/dry-cli/lib/dry/cli/command.rb +387 -0
  68. data/vendor/dry-cli/lib/dry/cli/command_registry.rb +253 -0
  69. data/vendor/dry-cli/lib/dry/cli/errors.rb +37 -0
  70. data/vendor/dry-cli/lib/dry/cli/inflector.rb +17 -0
  71. data/vendor/dry-cli/lib/dry/cli/inline.rb +75 -0
  72. data/vendor/dry-cli/lib/dry/cli/option.rb +131 -0
  73. data/vendor/dry-cli/lib/dry/cli/parser.rb +138 -0
  74. data/vendor/dry-cli/lib/dry/cli/program_name.rb +21 -0
  75. data/vendor/dry-cli/lib/dry/cli/registry.rb +338 -0
  76. data/vendor/dry-cli/lib/dry/cli/usage.rb +94 -0
  77. data/vendor/dry-cli/lib/dry/cli/version.rb +8 -0
  78. data/vendor/dry-cli/project.yml +13 -0
  79. data/vendor/dry-cli/spec/integration/commands_spec.rb +14 -0
  80. data/vendor/dry-cli/spec/integration/inherited_commands_spec.rb +24 -0
  81. data/vendor/dry-cli/spec/integration/inline_spec.rb +43 -0
  82. data/vendor/dry-cli/spec/integration/processes_errors_spec.rb +29 -0
  83. data/vendor/dry-cli/spec/integration/rendering_spec.rb +31 -0
  84. data/vendor/dry-cli/spec/integration/single_command_spec.rb +81 -0
  85. data/vendor/dry-cli/spec/integration/subcommands_spec.rb +60 -0
  86. data/vendor/dry-cli/spec/integration/third_party_gems_spec.rb +18 -0
  87. data/vendor/dry-cli/spec/spec_helper.rb +15 -0
  88. data/vendor/dry-cli/spec/support/coverage.rb +15 -0
  89. data/vendor/dry-cli/spec/support/files.rb +13 -0
  90. data/vendor/dry-cli/spec/support/fixtures/based +65 -0
  91. data/vendor/dry-cli/spec/support/fixtures/baz +9 -0
  92. data/vendor/dry-cli/spec/support/fixtures/baz_command.rb +19 -0
  93. data/vendor/dry-cli/spec/support/fixtures/foo +588 -0
  94. data/vendor/dry-cli/spec/support/fixtures/infinites +31 -0
  95. data/vendor/dry-cli/spec/support/fixtures/inline +20 -0
  96. data/vendor/dry-cli/spec/support/fixtures/registry.rb +15 -0
  97. data/vendor/dry-cli/spec/support/fixtures/shared_commands.rb +596 -0
  98. data/vendor/dry-cli/spec/support/fixtures/with_block.rb +86 -0
  99. data/vendor/dry-cli/spec/support/fixtures/with_registry.rb +90 -0
  100. data/vendor/dry-cli/spec/support/fixtures/with_zero_arity_block.rb +87 -0
  101. data/vendor/dry-cli/spec/support/helpers.rb +37 -0
  102. data/vendor/dry-cli/spec/support/path.rb +24 -0
  103. data/vendor/dry-cli/spec/support/rspec.rb +26 -0
  104. data/vendor/dry-cli/spec/support/rspec_options.rb +16 -0
  105. data/vendor/dry-cli/spec/support/shared_examples/commands.rb +300 -0
  106. data/vendor/dry-cli/spec/support/shared_examples/inherited_commands.rb +197 -0
  107. data/vendor/dry-cli/spec/support/shared_examples/rendering.rb +181 -0
  108. data/vendor/dry-cli/spec/support/shared_examples/subcommands.rb +226 -0
  109. data/vendor/dry-cli/spec/support/shared_examples/third_party_gems.rb +49 -0
  110. data/vendor/dry-cli/spec/support/warnings.rb +10 -0
  111. data/vendor/dry-cli/spec/unit/dry/cli/cli_spec.rb +123 -0
  112. data/vendor/dry-cli/spec/unit/dry/cli/inflector_spec.rb +26 -0
  113. data/vendor/dry-cli/spec/unit/dry/cli/registry_spec.rb +78 -0
  114. data/vendor/dry-cli/spec/unit/dry/cli/version_spec.rb +7 -0
  115. data/vendor/strings-ansi/CHANGELOG.md +24 -0
  116. data/vendor/strings-ansi/CODE_OF_CONDUCT.md +74 -0
  117. data/vendor/strings-ansi/Gemfile +11 -0
  118. data/{LICENSE.txt → vendor/strings-ansi/LICENSE.txt} +1 -1
  119. data/vendor/strings-ansi/README.md +155 -0
  120. data/vendor/strings-ansi/Rakefile +8 -0
  121. data/vendor/strings-ansi/appveyor.yml +32 -0
  122. data/vendor/strings-ansi/bin/console +14 -0
  123. data/vendor/strings-ansi/bin/setup +8 -0
  124. data/vendor/strings-ansi/lib/strings-ansi.rb +1 -0
  125. data/vendor/strings-ansi/lib/strings/ansi.rb +84 -0
  126. data/vendor/strings-ansi/lib/strings/ansi/extensions.rb +23 -0
  127. data/vendor/strings-ansi/lib/strings/ansi/version.rb +7 -0
  128. data/vendor/strings-ansi/spec/fixtures/ansi_codes.yaml +194 -0
  129. data/vendor/strings-ansi/spec/spec_helper.rb +51 -0
  130. data/vendor/strings-ansi/spec/unit/ansi_spec.rb +15 -0
  131. data/vendor/strings-ansi/spec/unit/extensions_spec.rb +19 -0
  132. data/vendor/strings-ansi/spec/unit/only_ansi_spec.rb +36 -0
  133. data/vendor/strings-ansi/spec/unit/sanitize_spec.rb +53 -0
  134. data/vendor/strings-ansi/strings-ansi.gemspec +34 -0
  135. data/vendor/strings-ansi/tasks/console.rake +11 -0
  136. data/vendor/strings-ansi/tasks/coverage.rake +11 -0
  137. data/vendor/strings-ansi/tasks/spec.rake +29 -0
  138. metadata +274 -188
  139. data/.github/workflows/main.yml +0 -26
  140. data/.gitignore +0 -43
  141. data/.rspec +0 -2
  142. data/.rubocop.yml +0 -87
  143. data/.travis.yml +0 -35
  144. data/Gemfile +0 -2
  145. data/Gemfile.base +0 -14
  146. data/Gemfile.base.lock +0 -172
  147. data/Gemfile.lock +0 -188
  148. data/Guardfile +0 -16
  149. data/Makefile +0 -12
  150. data/README.md +0 -85
  151. data/Rakefile +0 -31
  152. data/bin/bundle +0 -114
  153. data/bin/console +0 -29
  154. data/bin/guard +0 -29
  155. data/bin/rake +0 -29
  156. data/bin/rfix +0 -29
  157. data/bin/rspec +0 -29
  158. data/bin/setup +0 -29
  159. data/ci/Gemfile.rubocop-0.80 +0 -2
  160. data/ci/Gemfile.rubocop-0.80.lock +0 -170
  161. data/ci/Gemfile.rubocop-0.81 +0 -2
  162. data/ci/Gemfile.rubocop-0.81.lock +0 -170
  163. data/ci/Gemfile.rubocop-0.82 +0 -2
  164. data/ci/Gemfile.rubocop-0.82.lock +0 -170
  165. data/ci/Gemfile.rubocop-0.83 +0 -2
  166. data/ci/Gemfile.rubocop-0.83.lock +0 -168
  167. data/ci/Gemfile.rubocop-0.84 +0 -2
  168. data/ci/Gemfile.rubocop-0.84.lock +0 -171
  169. data/ci/Gemfile.rubocop-0.85 +0 -2
  170. data/ci/Gemfile.rubocop-0.85.1 +0 -2
  171. data/ci/Gemfile.rubocop-0.85.1.lock +0 -173
  172. data/ci/Gemfile.rubocop-0.85.lock +0 -173
  173. data/lib/rfix/box.rb +0 -112
  174. data/lib/rfix/branches/base.rb +0 -15
  175. data/lib/rfix/branches/head.rb +0 -13
  176. data/lib/rfix/branches/main.rb +0 -28
  177. data/lib/rfix/branches/name.rb +0 -23
  178. data/lib/rfix/branches/reference.rb +0 -21
  179. data/lib/rfix/branches/upstream.rb +0 -13
  180. data/lib/rfix/cmd.rb +0 -39
  181. data/lib/rfix/commands/branch.rb +0 -15
  182. data/lib/rfix/commands/extensions/options.rb +0 -8
  183. data/lib/rfix/commands/help.rb +0 -7
  184. data/lib/rfix/commands/helper/args.rb +0 -141
  185. data/lib/rfix/commands/helper/help.rb +0 -6
  186. data/lib/rfix/commands/helper/loader.rb +0 -6
  187. data/lib/rfix/commands/helper/option.rb +0 -0
  188. data/lib/rfix/commands/helper/params.rb +0 -0
  189. data/lib/rfix/commands/helper/rubocop.rb +0 -17
  190. data/lib/rfix/commands/info.rb +0 -30
  191. data/lib/rfix/commands/lint.rb +0 -22
  192. data/lib/rfix/commands/local.rb +0 -12
  193. data/lib/rfix/commands/origin.rb +0 -19
  194. data/lib/rfix/commands/setup.rb +0 -29
  195. data/lib/rfix/commands/welcome.rb +0 -24
  196. data/lib/rfix/deleted.rb +0 -13
  197. data/lib/rfix/extensions/extensions.rb +0 -18
  198. data/lib/rfix/extensions/offense.rb +0 -78
  199. data/lib/rfix/extensions/string.rb +0 -8
  200. data/lib/rfix/file_cache.rb +0 -59
  201. data/lib/rfix/git_helper.rb +0 -59
  202. data/lib/rfix/indentation.rb +0 -39
  203. data/lib/rfix/loader/bundler.rb +0 -37
  204. data/lib/rfix/loader/env.rb +0 -33
  205. data/lib/rfix/loader/spec.rb +0 -41
  206. data/lib/rfix/no_file.rb +0 -13
  207. data/lib/rfix/rfix.rb +0 -34
  208. data/lib/rfix/tracked.rb +0 -72
  209. data/lib/rfix/tracked_file.rb +0 -16
  210. data/lib/rfix/untracked.rb +0 -13
  211. data/resources/ps.png +0 -0
  212. data/tasks/bump.rake +0 -11
  213. data/tasks/bundle.rake +0 -17
  214. data/tasks/complex.rake +0 -54
  215. data/tasks/execute.rake +0 -38
  216. data/tasks/libgit2.rake +0 -33
  217. data/tasks/simple.rake +0 -62
  218. data/tasks/travis.rake +0 -74
  219. data/tasks/vendor.rake +0 -34
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "strings/ansi/extensions"
4
+
5
+ using Strings::ANSI::Extensions
6
+
7
+ RSpec.describe Strings::ANSI::Extensions do
8
+ it "checks for presence of ansi codes" do
9
+ expect("\e[33mfoo\e[0m".ansi?).to eq(true)
10
+ end
11
+
12
+ it "checks if string contains only ansi codes" do
13
+ expect("\e[33mfoo\e[0m".ansi?).to eq(true)
14
+ end
15
+
16
+ it "strips ansi codes" do
17
+ expect("\e[33mfoo\e[0m".sanitize).to eq("foo")
18
+ end
19
+ end
@@ -0,0 +1,36 @@
1
+ # frozen_string_literal: true
2
+
3
+ RSpec.describe Strings::ANSI, "#only_ansi?" do
4
+ it "doesn't report empty string as having ansi codes" do
5
+ expect(Strings::ANSI.only_ansi?("")).to eq(false)
6
+ end
7
+
8
+ it "doesn't report string without ansi" do
9
+ expect(Strings::ANSI.only_ansi?("foo")).to eq(false)
10
+ end
11
+
12
+ it "doesn't report string containing ansi codes" do
13
+ expect(Strings::ANSI.only_ansi?("\e[33;44mfoo\e[0m")).to eq(false)
14
+ end
15
+
16
+ it "reports string with only ansi codes correctly" do
17
+ expect(Strings::ANSI.only_ansi?("\e[33;44m\e[0m")).to eq(true)
18
+ end
19
+
20
+ it "correctly checks string containing multiple lines" do
21
+ expect(Strings::ANSI.only_ansi?("\n\e[33;44m\e[0m")).to eq(false)
22
+ expect(Strings::ANSI.only_ansi?("\e[33;44m\e[0m\n")).to eq(false)
23
+ expect(Strings::ANSI.only_ansi?("\n")).to eq(false)
24
+ expect(Strings::ANSI.only_ansi?("\n\n")).to eq(false)
25
+ end
26
+
27
+ it "reports string containing hyperlink codes with an empty name" do
28
+ expect(Strings::ANSI.only_ansi?("\e]8;;https://google.com\a\e]8;;\a")).to eq(true)
29
+ expect(Strings::ANSI.only_ansi?("\e]8;;https://google.com\e\\\e]8;;\e\\")).to eq(true)
30
+ end
31
+
32
+ it "doesn't report string containing hyperlink codes with non-empty name" do
33
+ expect(Strings::ANSI.only_ansi?("\e]8;;https://google.com\alabel\e]8;;\a")).to eq(false)
34
+ expect(Strings::ANSI.only_ansi?("\e]8;;https://google.com\e\\label\e]8;;\e\\")).to eq(false)
35
+ end
36
+ end
@@ -0,0 +1,53 @@
1
+ # frozen_string_literal: true
2
+
3
+ RSpec.describe Strings::ANSI, "#sanitize" do
4
+ context "when string contains VT100 escape codes" do
5
+ YAML.load_file(fixtures_path("ansi_codes.yaml")).each do |code|
6
+ it "removes #{code.inspect} from #{('ansi' + code + 'code').inspect}" do
7
+ expect(Strings::ANSI.sanitize("ansi#{code}code")).to eq("ansicode")
8
+ expect(Strings::ANSI.sanitize("ansi#{code}1234")).to eq("ansi1234")
9
+ end
10
+ end
11
+ end
12
+
13
+ context "when string contains display attributes" do
14
+ it "removes basic color codes" do
15
+ expect(Strings::ANSI.sanitize("\e[1;33;44;91mfoo\e[0m")).to eq("foo")
16
+ end
17
+
18
+ it "removes 256 color codes" do
19
+ expect(Strings::ANSI.sanitize("\e[38;5;255mfoo\e[0m")).to eq("foo")
20
+ end
21
+
22
+ it "removes 24-bit color codes" do
23
+ expect(Strings::ANSI.sanitize("\e[48;2;255;255;255mfoo\e[0m")).to eq("foo")
24
+ end
25
+
26
+ it "removes erasing codes" do
27
+ expect(Strings::ANSI.sanitize("\e[123Kfoo\e[0m")).to eq("foo")
28
+ end
29
+ end
30
+
31
+ context "when string contains hyperlink escape sequence" do
32
+ it "removes escape codes and returns empty string when label is empty" do
33
+ expect(Strings::ANSI.sanitize("\e]8;;https://google.com\e\\\e]8;;\e\\")).to eq("")
34
+ end
35
+
36
+ it "removes escape codes and returns label when is present" do
37
+ expect(Strings::ANSI.sanitize("\e]8;;https://google.com\e\\label\e]8;;\e\\")).to eq("label")
38
+ end
39
+
40
+ it "removes escape codes correctly when params part is present" do
41
+ expect(Strings::ANSI.sanitize("\e]8;key1=value1:key2=value2;https://google.com\alabel1\e]8;;\e\\")).to eq("label1")
42
+ expect(Strings::ANSI.sanitize("\e]8;invalid-params;https://google.com\alabel2\e]8;;\e\\")).to eq("label2")
43
+ end
44
+
45
+ it "removes escape codes, leaving other characters that are not part of sequence" do
46
+ expect(Strings::ANSI.sanitize("before_\e]8;;https://google.com\alabel\e]8;;\a_after")).to eq("before_label_after")
47
+ end
48
+
49
+ it "correctly removes escape codes when non-standard \\a terminator is used" do
50
+ expect(Strings::ANSI.sanitize("before_\e]8;;https://google.com\alabel\e]8;;\e\\_after")).to eq("before_label_after")
51
+ end
52
+ end
53
+ end
@@ -0,0 +1,34 @@
1
+ lib = File.expand_path("../lib", __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require "strings/ansi/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "strings-ansi"
7
+ spec.version = Strings::ANSI::VERSION
8
+ spec.authors = ["Piotr Murach"]
9
+ spec.email = ["me@piotrmurach.com"]
10
+
11
+ spec.summary = %q{Methods for processing ANSI escape codes in strings.}
12
+ spec.description = %q{Methods for processing ANSI escape codes in strings.}
13
+ spec.homepage = "https://github.com/piotrmurach/strings-ansi"
14
+ spec.license = "MIT"
15
+
16
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
17
+ spec.metadata["bug_tracker_uri"] = "https://github.com/piotrmurach/strings-ansi/issues"
18
+ spec.metadata["changelog_uri"] = "https://github.com/piotrmurach/strings-ansi/blob/master/CHANGELOG.md"
19
+ spec.metadata["documentation_uri"] = "https://www.rubydoc.info/gems/strings-ansi"
20
+ spec.metadata["homepage_uri"] = spec.homepage
21
+ spec.metadata["source_code_uri"] = "https://github.com/piotrmurach/strings-ansi"
22
+
23
+ spec.files = Dir["{lib,spec}/**/*.rb"]
24
+ spec.files += Dir["{bin,tasks}/*", "strings-ansi.gemspec"]
25
+ spec.files += Dir["README.md", "CHANGELOG.md", "LICENSE.txt", "Rakefile"]
26
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
27
+ spec.require_paths = ["lib"]
28
+
29
+ spec.required_ruby_version = ">= 2.0.0"
30
+
31
+ spec.add_development_dependency "bundler", ">= 1.5"
32
+ spec.add_development_dependency "rake"
33
+ spec.add_development_dependency "rspec", "~> 3.0"
34
+ end
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ desc "Load gem inside irb console"
4
+ task :console do
5
+ require "irb"
6
+ require "irb/completion"
7
+ require File.join(__FILE__, "../../lib/strings-ansi")
8
+ ARGV.clear
9
+ IRB.start
10
+ end
11
+ task c: %w[ console ]
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ desc "Measure code coverage"
4
+ task :coverage do
5
+ begin
6
+ original, ENV["COVERAGE"] = ENV["COVERAGE"], "true"
7
+ Rake::Task["spec"].invoke
8
+ ensure
9
+ ENV["COVERAGE"] = original
10
+ end
11
+ end
@@ -0,0 +1,29 @@
1
+ # frozen_string_literal: true
2
+
3
+ begin
4
+ require "rspec/core/rake_task"
5
+
6
+ desc "Run all specs"
7
+ RSpec::Core::RakeTask.new(:spec) do |task|
8
+ task.pattern = "spec/{unit,integration}{,/*/**}/*_spec.rb"
9
+ end
10
+
11
+ namespace :spec do
12
+ desc "Run unit specs"
13
+ RSpec::Core::RakeTask.new(:unit) do |task|
14
+ task.pattern = "spec/unit{,/*/**}/*_spec.rb"
15
+ end
16
+
17
+ desc "Run integration specs"
18
+ RSpec::Core::RakeTask.new(:integration) do |task|
19
+ task.pattern = "spec/integration{,/*/**}/*_spec.rb"
20
+ end
21
+ end
22
+
23
+ rescue LoadError
24
+ %w[spec spec:unit spec:integration].each do |name|
25
+ task name do
26
+ $stderr.puts "In order to run #{name}, do `gem install rspec`"
27
+ end
28
+ end
29
+ end
metadata CHANGED
@@ -1,57 +1,127 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rfix
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.1
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Linus Oleander
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-03-11 00:00:00.000000000 Z
11
+ date: 2021-05-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: cri
14
+ name: activesupport
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 2.15.10
19
+ version: '0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
25
39
  - !ruby/object:Gem::Version
26
- version: 2.15.10
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: dry-cli
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
27
55
  - !ruby/object:Gem::Dependency
28
56
  name: dry-core
29
57
  requirement: !ruby/object:Gem::Requirement
30
58
  requirements:
31
- - - "~>"
59
+ - - ">="
32
60
  - !ruby/object:Gem::Version
33
- version: 0.5.0
61
+ version: '0'
34
62
  type: :runtime
35
63
  prerelease: false
36
64
  version_requirements: !ruby/object:Gem::Requirement
37
65
  requirements:
38
- - - "~>"
66
+ - - ">="
39
67
  - !ruby/object:Gem::Version
40
- version: 0.5.0
68
+ version: '0'
41
69
  - !ruby/object:Gem::Dependency
42
- name: listen
70
+ name: dry-initializer
43
71
  requirement: !ruby/object:Gem::Requirement
44
72
  requirements:
45
- - - "~>"
73
+ - - ">="
46
74
  - !ruby/object:Gem::Version
47
- version: '3.0'
75
+ version: '0'
48
76
  type: :runtime
49
77
  prerelease: false
50
78
  version_requirements: !ruby/object:Gem::Requirement
51
79
  requirements:
52
- - - "~>"
80
+ - - ">="
53
81
  - !ruby/object:Gem::Version
54
- version: '3.0'
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: dry-struct
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: dry-types
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: pastel
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
55
125
  - !ruby/object:Gem::Dependency
56
126
  name: rainbow
57
127
  requirement: !ruby/object:Gem::Requirement
@@ -67,19 +137,19 @@ dependencies:
67
137
  - !ruby/object:Gem::Version
68
138
  version: '3.0'
69
139
  - !ruby/object:Gem::Dependency
70
- name: require_all
140
+ name: rake
71
141
  requirement: !ruby/object:Gem::Requirement
72
142
  requirements:
73
- - - "~>"
143
+ - - ">="
74
144
  - !ruby/object:Gem::Version
75
- version: 3.0.0
145
+ version: '0'
76
146
  type: :runtime
77
147
  prerelease: false
78
148
  version_requirements: !ruby/object:Gem::Requirement
79
149
  requirements:
80
- - - "~>"
150
+ - - ">="
81
151
  - !ruby/object:Gem::Version
82
- version: 3.0.0
152
+ version: '0'
83
153
  - !ruby/object:Gem::Dependency
84
154
  name: rouge
85
155
  requirement: !ruby/object:Gem::Requirement
@@ -100,132 +170,132 @@ dependencies:
100
170
  requirements:
101
171
  - - ">="
102
172
  - !ruby/object:Gem::Version
103
- version: '0.80'
104
- - - "<"
173
+ version: 0.82.0
174
+ - - "!="
105
175
  - !ruby/object:Gem::Version
106
- version: '0.90'
176
+ version: 0.85.0
107
177
  type: :runtime
108
178
  prerelease: false
109
179
  version_requirements: !ruby/object:Gem::Requirement
110
180
  requirements:
111
181
  - - ">="
112
182
  - !ruby/object:Gem::Version
113
- version: '0.80'
114
- - - "<"
183
+ version: 0.82.0
184
+ - - "!="
115
185
  - !ruby/object:Gem::Version
116
- version: '0.90'
186
+ version: 0.85.0
117
187
  - !ruby/object:Gem::Dependency
118
- name: rugged
188
+ name: rubocop-ast
119
189
  requirement: !ruby/object:Gem::Requirement
120
190
  requirements:
121
- - - "~>"
191
+ - - ">="
122
192
  - !ruby/object:Gem::Version
123
- version: 1.0.0
193
+ version: '0'
124
194
  type: :runtime
125
195
  prerelease: false
126
196
  version_requirements: !ruby/object:Gem::Requirement
127
197
  requirements:
128
- - - "~>"
198
+ - - ">="
129
199
  - !ruby/object:Gem::Version
130
- version: 1.0.0
200
+ version: '0'
131
201
  - !ruby/object:Gem::Dependency
132
- name: rspec
202
+ name: rugged
133
203
  requirement: !ruby/object:Gem::Requirement
134
204
  requirements:
135
- - - "~>"
205
+ - - ">="
136
206
  - !ruby/object:Gem::Version
137
- version: '3.0'
138
- type: :development
207
+ version: '0'
208
+ type: :runtime
139
209
  prerelease: false
140
210
  version_requirements: !ruby/object:Gem::Requirement
141
211
  requirements:
142
- - - "~>"
212
+ - - ">="
143
213
  - !ruby/object:Gem::Version
144
- version: '3.0'
214
+ version: '0'
145
215
  - !ruby/object:Gem::Dependency
146
- name: rspec-its
216
+ name: strings
147
217
  requirement: !ruby/object:Gem::Requirement
148
218
  requirements:
149
- - - "~>"
219
+ - - ">="
150
220
  - !ruby/object:Gem::Version
151
- version: 1.3.0
152
- type: :development
221
+ version: '0'
222
+ type: :runtime
153
223
  prerelease: false
154
224
  version_requirements: !ruby/object:Gem::Requirement
155
225
  requirements:
156
- - - "~>"
226
+ - - ">="
157
227
  - !ruby/object:Gem::Version
158
- version: 1.3.0
228
+ version: '0'
159
229
  - !ruby/object:Gem::Dependency
160
- name: aruba
230
+ name: tty-box
161
231
  requirement: !ruby/object:Gem::Requirement
162
232
  requirements:
163
- - - "~>"
233
+ - - ">="
164
234
  - !ruby/object:Gem::Version
165
- version: '1.0'
166
- type: :development
235
+ version: '0'
236
+ type: :runtime
167
237
  prerelease: false
168
238
  version_requirements: !ruby/object:Gem::Requirement
169
239
  requirements:
170
- - - "~>"
240
+ - - ">="
171
241
  - !ruby/object:Gem::Version
172
- version: '1.0'
242
+ version: '0'
173
243
  - !ruby/object:Gem::Dependency
174
- name: colorize
244
+ name: tty-link
175
245
  requirement: !ruby/object:Gem::Requirement
176
246
  requirements:
177
- - - "~>"
247
+ - - ">="
178
248
  - !ruby/object:Gem::Version
179
- version: 0.8.1
180
- type: :development
249
+ version: '0'
250
+ type: :runtime
181
251
  prerelease: false
182
252
  version_requirements: !ruby/object:Gem::Requirement
183
253
  requirements:
184
- - - "~>"
254
+ - - ">="
185
255
  - !ruby/object:Gem::Version
186
- version: 0.8.1
256
+ version: '0'
187
257
  - !ruby/object:Gem::Dependency
188
- name: git
258
+ name: tty-prompt
189
259
  requirement: !ruby/object:Gem::Requirement
190
260
  requirements:
191
- - - "~>"
261
+ - - ">="
192
262
  - !ruby/object:Gem::Version
193
- version: 1.7.0
194
- type: :development
263
+ version: '0'
264
+ type: :runtime
195
265
  prerelease: false
196
266
  version_requirements: !ruby/object:Gem::Requirement
197
267
  requirements:
198
- - - "~>"
268
+ - - ">="
199
269
  - !ruby/object:Gem::Version
200
- version: 1.7.0
270
+ version: '0'
201
271
  - !ruby/object:Gem::Dependency
202
- name: pry
272
+ name: tty-screen
203
273
  requirement: !ruby/object:Gem::Requirement
204
274
  requirements:
205
- - - "~>"
275
+ - - ">="
206
276
  - !ruby/object:Gem::Version
207
- version: 0.13.1
208
- type: :development
277
+ version: '0'
278
+ type: :runtime
209
279
  prerelease: false
210
280
  version_requirements: !ruby/object:Gem::Requirement
211
281
  requirements:
212
- - - "~>"
282
+ - - ">="
213
283
  - !ruby/object:Gem::Version
214
- version: 0.13.1
284
+ version: '0'
215
285
  - !ruby/object:Gem::Dependency
216
- name: rake
286
+ name: zeitwerk
217
287
  requirement: !ruby/object:Gem::Requirement
218
288
  requirements:
219
- - - "~>"
289
+ - - ">="
220
290
  - !ruby/object:Gem::Version
221
- version: '12.3'
222
- type: :development
291
+ version: '0'
292
+ type: :runtime
223
293
  prerelease: false
224
294
  version_requirements: !ruby/object:Gem::Requirement
225
295
  requirements:
226
- - - "~>"
296
+ - - ">="
227
297
  - !ruby/object:Gem::Version
228
- version: '12.3'
298
+ version: '0'
229
299
  description: |
230
300
  RuboCop CLI that only lints and auto-fixes code you committed by utilizing `git-log` and `git-diff`. Rfix CLI makes it possible to lint (`rfix lint`) and auto-fix (`rfix local|origin|branch`) code changes since a certain point in history. You can auto-fix code committed since creating the current branch (`rfix origin`) or since pushing to upstream (`rfix local`).
231
301
 
@@ -239,149 +309,165 @@ executables:
239
309
  extensions: []
240
310
  extra_rdoc_files: []
241
311
  files:
242
- - ".github/workflows/main.yml"
243
- - ".gitignore"
244
- - ".rspec"
245
- - ".rubocop.yml"
246
- - ".travis.yml"
247
- - Gemfile
248
- - Gemfile.base
249
- - Gemfile.base.lock
250
- - Gemfile.lock
251
- - Guardfile
252
- - LICENSE.txt
253
- - Makefile
254
- - README.md
255
- - Rakefile
256
- - bin/bundle
257
- - bin/console
258
- - bin/guard
259
- - bin/rake
260
- - bin/rfix
261
- - bin/rspec
262
- - bin/setup
263
- - ci/Gemfile.rubocop-0.80
264
- - ci/Gemfile.rubocop-0.80.lock
265
- - ci/Gemfile.rubocop-0.81
266
- - ci/Gemfile.rubocop-0.81.lock
267
- - ci/Gemfile.rubocop-0.82
268
- - ci/Gemfile.rubocop-0.82.lock
269
- - ci/Gemfile.rubocop-0.83
270
- - ci/Gemfile.rubocop-0.83.lock
271
- - ci/Gemfile.rubocop-0.84
272
- - ci/Gemfile.rubocop-0.84.lock
273
- - ci/Gemfile.rubocop-0.85
274
- - ci/Gemfile.rubocop-0.85.1
275
- - ci/Gemfile.rubocop-0.85.1.lock
276
- - ci/Gemfile.rubocop-0.85.lock
277
312
  - exe/rfix
278
313
  - lib/rfix.rb
279
- - lib/rfix/box.rb
280
314
  - lib/rfix/branch.rb
281
- - lib/rfix/branches/base.rb
282
- - lib/rfix/branches/head.rb
283
- - lib/rfix/branches/main.rb
284
- - lib/rfix/branches/name.rb
285
- - lib/rfix/branches/reference.rb
286
- - lib/rfix/branches/upstream.rb
287
- - lib/rfix/cmd.rb
288
- - lib/rfix/commands/branch.rb
289
- - lib/rfix/commands/extensions/options.rb
290
- - lib/rfix/commands/help.rb
291
- - lib/rfix/commands/helper/args.rb
292
- - lib/rfix/commands/helper/help.rb
293
- - lib/rfix/commands/helper/loader.rb
294
- - lib/rfix/commands/helper/option.rb
295
- - lib/rfix/commands/helper/params.rb
296
- - lib/rfix/commands/helper/rubocop.rb
297
- - lib/rfix/commands/info.rb
298
- - lib/rfix/commands/lint.rb
299
- - lib/rfix/commands/local.rb
300
- - lib/rfix/commands/origin.rb
301
- - lib/rfix/commands/setup.rb
302
- - lib/rfix/commands/welcome.rb
303
- - lib/rfix/deleted.rb
315
+ - lib/rfix/branch/base.rb
316
+ - lib/rfix/branch/head.rb
317
+ - lib/rfix/branch/main.rb
318
+ - lib/rfix/branch/name.rb
319
+ - lib/rfix/branch/reference.rb
320
+ - lib/rfix/branch/upstream.rb
321
+ - lib/rfix/cli/command.rb
322
+ - lib/rfix/cli/command/base.rb
323
+ - lib/rfix/cli/command/branch.rb
324
+ - lib/rfix/cli/command/config.rb
325
+ - lib/rfix/cli/command/extension.rb
326
+ - lib/rfix/cli/command/help.rb
327
+ - lib/rfix/cli/command/info.rb
328
+ - lib/rfix/cli/command/lint.rb
329
+ - lib/rfix/cli/command/local.rb
330
+ - lib/rfix/cli/command/origin.rb
331
+ - lib/rfix/cli/command/setup.rb
304
332
  - lib/rfix/error.rb
305
- - lib/rfix/extensions/extensions.rb
306
- - lib/rfix/extensions/offense.rb
307
- - lib/rfix/extensions/string.rb
333
+ - lib/rfix/extension/offense.rb
334
+ - lib/rfix/extension/pastel.rb
335
+ - lib/rfix/extension/string.rb
336
+ - lib/rfix/extension/strings.rb
308
337
  - lib/rfix/file.rb
309
- - lib/rfix/file_cache.rb
338
+ - lib/rfix/file/base.rb
339
+ - lib/rfix/file/deleted.rb
340
+ - lib/rfix/file/ignored.rb
341
+ - lib/rfix/file/tracked.rb
342
+ - lib/rfix/file/untracked.rb
310
343
  - lib/rfix/formatter.rb
311
- - lib/rfix/git_helper.rb
312
- - lib/rfix/indentation.rb
313
- - lib/rfix/loader/bundler.rb
314
- - lib/rfix/loader/env.rb
315
- - lib/rfix/loader/spec.rb
344
+ - lib/rfix/highlighter.rb
345
+ - lib/rfix/indicator.rb
316
346
  - lib/rfix/log.rb
317
- - lib/rfix/no_file.rb
347
+ - lib/rfix/rake/gemfile.rb
318
348
  - lib/rfix/rake/paths.rb
319
349
  - lib/rfix/rake/support.rb
320
350
  - lib/rfix/repository.rb
321
- - lib/rfix/rfix.rb
322
- - lib/rfix/tracked.rb
323
- - lib/rfix/tracked_file.rb
324
- - lib/rfix/untracked.rb
351
+ - lib/rfix/types.rb
325
352
  - lib/rfix/version.rb
326
- - resources/ps.png
327
353
  - rfix.gemspec
328
- - tasks/bump.rake
329
- - tasks/bundle.rake
330
- - tasks/complex.rake
331
- - tasks/execute.rake
332
- - tasks/libgit2.rake
333
- - tasks/simple.rake
334
- - tasks/travis.rake
335
- - tasks/vendor.rake
336
- - vendor/shopify/cli-ui/lib/cli/ui.rb
337
- - vendor/shopify/cli-ui/lib/cli/ui/ansi.rb
338
- - vendor/shopify/cli-ui/lib/cli/ui/color.rb
339
- - vendor/shopify/cli-ui/lib/cli/ui/formatter.rb
340
- - vendor/shopify/cli-ui/lib/cli/ui/frame.rb
341
- - vendor/shopify/cli-ui/lib/cli/ui/frame/frame_stack.rb
342
- - vendor/shopify/cli-ui/lib/cli/ui/frame/frame_style.rb
343
- - vendor/shopify/cli-ui/lib/cli/ui/frame/frame_style/box.rb
344
- - vendor/shopify/cli-ui/lib/cli/ui/frame/frame_style/bracket.rb
345
- - vendor/shopify/cli-ui/lib/cli/ui/glyph.rb
346
- - vendor/shopify/cli-ui/lib/cli/ui/printer.rb
347
- - vendor/shopify/cli-ui/lib/cli/ui/progress.rb
348
- - vendor/shopify/cli-ui/lib/cli/ui/prompt.rb
349
- - vendor/shopify/cli-ui/lib/cli/ui/prompt/interactive_options.rb
350
- - vendor/shopify/cli-ui/lib/cli/ui/prompt/options_handler.rb
351
- - vendor/shopify/cli-ui/lib/cli/ui/spinner.rb
352
- - vendor/shopify/cli-ui/lib/cli/ui/spinner/async.rb
353
- - vendor/shopify/cli-ui/lib/cli/ui/spinner/spin_group.rb
354
- - vendor/shopify/cli-ui/lib/cli/ui/stdout_router.rb
355
- - vendor/shopify/cli-ui/lib/cli/ui/terminal.rb
356
- - vendor/shopify/cli-ui/lib/cli/ui/truncater.rb
357
- - vendor/shopify/cli-ui/lib/cli/ui/version.rb
358
- - vendor/shopify/cli-ui/lib/cli/ui/widgets.rb
359
- - vendor/shopify/cli-ui/lib/cli/ui/widgets/base.rb
360
- - vendor/shopify/cli-ui/lib/cli/ui/widgets/status.rb
354
+ - vendor/dry-cli/CHANGELOG.md
355
+ - vendor/dry-cli/CODEOWNERS
356
+ - vendor/dry-cli/CODE_OF_CONDUCT.md
357
+ - vendor/dry-cli/CONTRIBUTING.md
358
+ - vendor/dry-cli/Gemfile
359
+ - vendor/dry-cli/Gemfile.devtools
360
+ - vendor/dry-cli/LICENSE
361
+ - vendor/dry-cli/README.md
362
+ - vendor/dry-cli/Rakefile
363
+ - vendor/dry-cli/bin/console
364
+ - vendor/dry-cli/bin/setup
365
+ - vendor/dry-cli/changelog.yml
366
+ - vendor/dry-cli/docsite/source/arguments.html.md
367
+ - vendor/dry-cli/docsite/source/callbacks.html.md
368
+ - vendor/dry-cli/docsite/source/commands-with-subcommands-and-params.md
369
+ - vendor/dry-cli/docsite/source/commands.html.md
370
+ - vendor/dry-cli/docsite/source/index.html.md
371
+ - vendor/dry-cli/docsite/source/options.html.md
372
+ - vendor/dry-cli/docsite/source/subcommands.html.md
373
+ - vendor/dry-cli/docsite/source/variadic-arguments.html.md
374
+ - vendor/dry-cli/dry-cli.gemspec
375
+ - vendor/dry-cli/lib/dry/cli.rb
376
+ - vendor/dry-cli/lib/dry/cli/banner.rb
377
+ - vendor/dry-cli/lib/dry/cli/command.rb
378
+ - vendor/dry-cli/lib/dry/cli/command_registry.rb
379
+ - vendor/dry-cli/lib/dry/cli/errors.rb
380
+ - vendor/dry-cli/lib/dry/cli/inflector.rb
381
+ - vendor/dry-cli/lib/dry/cli/inline.rb
382
+ - vendor/dry-cli/lib/dry/cli/option.rb
383
+ - vendor/dry-cli/lib/dry/cli/parser.rb
384
+ - vendor/dry-cli/lib/dry/cli/program_name.rb
385
+ - vendor/dry-cli/lib/dry/cli/registry.rb
386
+ - vendor/dry-cli/lib/dry/cli/usage.rb
387
+ - vendor/dry-cli/lib/dry/cli/version.rb
388
+ - vendor/dry-cli/project.yml
389
+ - vendor/dry-cli/spec/integration/commands_spec.rb
390
+ - vendor/dry-cli/spec/integration/inherited_commands_spec.rb
391
+ - vendor/dry-cli/spec/integration/inline_spec.rb
392
+ - vendor/dry-cli/spec/integration/processes_errors_spec.rb
393
+ - vendor/dry-cli/spec/integration/rendering_spec.rb
394
+ - vendor/dry-cli/spec/integration/single_command_spec.rb
395
+ - vendor/dry-cli/spec/integration/subcommands_spec.rb
396
+ - vendor/dry-cli/spec/integration/third_party_gems_spec.rb
397
+ - vendor/dry-cli/spec/spec_helper.rb
398
+ - vendor/dry-cli/spec/support/coverage.rb
399
+ - vendor/dry-cli/spec/support/files.rb
400
+ - vendor/dry-cli/spec/support/fixtures/based
401
+ - vendor/dry-cli/spec/support/fixtures/baz
402
+ - vendor/dry-cli/spec/support/fixtures/baz_command.rb
403
+ - vendor/dry-cli/spec/support/fixtures/foo
404
+ - vendor/dry-cli/spec/support/fixtures/infinites
405
+ - vendor/dry-cli/spec/support/fixtures/inline
406
+ - vendor/dry-cli/spec/support/fixtures/registry.rb
407
+ - vendor/dry-cli/spec/support/fixtures/shared_commands.rb
408
+ - vendor/dry-cli/spec/support/fixtures/with_block.rb
409
+ - vendor/dry-cli/spec/support/fixtures/with_registry.rb
410
+ - vendor/dry-cli/spec/support/fixtures/with_zero_arity_block.rb
411
+ - vendor/dry-cli/spec/support/helpers.rb
412
+ - vendor/dry-cli/spec/support/path.rb
413
+ - vendor/dry-cli/spec/support/rspec.rb
414
+ - vendor/dry-cli/spec/support/rspec_options.rb
415
+ - vendor/dry-cli/spec/support/shared_examples/commands.rb
416
+ - vendor/dry-cli/spec/support/shared_examples/inherited_commands.rb
417
+ - vendor/dry-cli/spec/support/shared_examples/rendering.rb
418
+ - vendor/dry-cli/spec/support/shared_examples/subcommands.rb
419
+ - vendor/dry-cli/spec/support/shared_examples/third_party_gems.rb
420
+ - vendor/dry-cli/spec/support/warnings.rb
421
+ - vendor/dry-cli/spec/unit/dry/cli/cli_spec.rb
422
+ - vendor/dry-cli/spec/unit/dry/cli/inflector_spec.rb
423
+ - vendor/dry-cli/spec/unit/dry/cli/registry_spec.rb
424
+ - vendor/dry-cli/spec/unit/dry/cli/version_spec.rb
425
+ - vendor/strings-ansi/CHANGELOG.md
426
+ - vendor/strings-ansi/CODE_OF_CONDUCT.md
427
+ - vendor/strings-ansi/Gemfile
428
+ - vendor/strings-ansi/LICENSE.txt
429
+ - vendor/strings-ansi/README.md
430
+ - vendor/strings-ansi/Rakefile
431
+ - vendor/strings-ansi/appveyor.yml
432
+ - vendor/strings-ansi/bin/console
433
+ - vendor/strings-ansi/bin/setup
434
+ - vendor/strings-ansi/lib/strings-ansi.rb
435
+ - vendor/strings-ansi/lib/strings/ansi.rb
436
+ - vendor/strings-ansi/lib/strings/ansi/extensions.rb
437
+ - vendor/strings-ansi/lib/strings/ansi/version.rb
438
+ - vendor/strings-ansi/spec/fixtures/ansi_codes.yaml
439
+ - vendor/strings-ansi/spec/spec_helper.rb
440
+ - vendor/strings-ansi/spec/unit/ansi_spec.rb
441
+ - vendor/strings-ansi/spec/unit/extensions_spec.rb
442
+ - vendor/strings-ansi/spec/unit/only_ansi_spec.rb
443
+ - vendor/strings-ansi/spec/unit/sanitize_spec.rb
444
+ - vendor/strings-ansi/strings-ansi.gemspec
445
+ - vendor/strings-ansi/tasks/console.rake
446
+ - vendor/strings-ansi/tasks/coverage.rake
447
+ - vendor/strings-ansi/tasks/spec.rake
361
448
  homepage: https://github.com/oleander/rfix-rb
362
449
  licenses:
363
450
  - MIT
364
451
  metadata:
365
452
  homepage_uri: https://github.com/oleander/rfix-rb
366
- post_install_message:
453
+ post_install_message:
367
454
  rdoc_options: []
368
455
  require_paths:
369
456
  - lib
370
- - vendor/shopify/cli-ui/lib
371
457
  required_ruby_version: !ruby/object:Gem::Requirement
372
458
  requirements:
373
459
  - - ">="
374
460
  - !ruby/object:Gem::Version
375
- version: 2.5.0
461
+ version: '2.6'
376
462
  required_rubygems_version: !ruby/object:Gem::Requirement
377
463
  requirements:
378
464
  - - ">="
379
465
  - !ruby/object:Gem::Version
380
466
  version: '0'
381
467
  requirements:
382
- - git, v2.0+
383
- rubygems_version: 3.0.3
384
- signing_key:
468
+ - git >= 2
469
+ rubygems_version: 3.1.2
470
+ signing_key:
385
471
  specification_version: 4
386
472
  summary: RuboCop CLI that only lints and auto-fixes code you committed by utilizing
387
473
  `git-log` and `git-diff`