rfix 1.4.1 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/exe/rfix +78 -34
- data/lib/rfix.rb +17 -28
- data/lib/rfix/branch.rb +3 -25
- data/lib/rfix/branch/base.rb +27 -0
- data/lib/rfix/branch/head.rb +15 -0
- data/lib/rfix/branch/main.rb +33 -0
- data/lib/rfix/branch/name.rb +21 -0
- data/lib/rfix/branch/reference.rb +15 -0
- data/lib/rfix/branch/upstream.rb +17 -0
- data/lib/rfix/cli/command.rb +19 -0
- data/lib/rfix/cli/command/base.rb +61 -0
- data/lib/rfix/cli/command/branch.rb +13 -0
- data/lib/rfix/cli/command/config.rb +22 -0
- data/lib/rfix/cli/command/extension.rb +25 -0
- data/lib/rfix/cli/command/help.rb +11 -0
- data/lib/rfix/cli/command/info.rb +11 -0
- data/lib/rfix/cli/command/lint.rb +17 -0
- data/lib/rfix/cli/command/local.rb +11 -0
- data/lib/rfix/cli/command/origin.rb +11 -0
- data/lib/rfix/cli/command/setup.rb +11 -0
- data/lib/rfix/error.rb +5 -1
- data/lib/rfix/extension/offense.rb +79 -0
- data/lib/rfix/extension/pastel.rb +11 -0
- data/lib/rfix/extension/string.rb +12 -0
- data/lib/rfix/extension/strings.rb +9 -0
- data/lib/rfix/file.rb +6 -41
- data/lib/rfix/file/base.rb +73 -0
- data/lib/rfix/file/deleted.rb +17 -0
- data/lib/rfix/file/ignored.rb +17 -0
- data/lib/rfix/file/tracked.rb +42 -0
- data/lib/rfix/file/untracked.rb +20 -0
- data/lib/rfix/formatter.rb +125 -86
- data/lib/rfix/highlighter.rb +118 -0
- data/lib/rfix/indicator.rb +19 -0
- data/lib/rfix/log.rb +12 -121
- data/lib/rfix/rake/gemfile.rb +111 -0
- data/lib/rfix/rake/paths.rb +25 -23
- data/lib/rfix/rake/support.rb +72 -57
- data/lib/rfix/repository.rb +114 -164
- data/lib/rfix/types.rb +52 -0
- data/lib/rfix/version.rb +1 -1
- data/rfix.gemspec +28 -38
- data/vendor/dry-cli/CHANGELOG.md +191 -0
- data/vendor/dry-cli/CODEOWNERS +1 -0
- data/vendor/dry-cli/CODE_OF_CONDUCT.md +13 -0
- data/vendor/dry-cli/CONTRIBUTING.md +29 -0
- data/vendor/dry-cli/Gemfile +14 -0
- data/vendor/dry-cli/Gemfile.devtools +18 -0
- data/vendor/dry-cli/LICENSE +20 -0
- data/vendor/dry-cli/README.md +29 -0
- data/vendor/dry-cli/Rakefile +13 -0
- data/vendor/dry-cli/bin/console +15 -0
- data/vendor/dry-cli/bin/setup +8 -0
- data/vendor/dry-cli/changelog.yml +97 -0
- data/vendor/dry-cli/docsite/source/arguments.html.md +57 -0
- data/vendor/dry-cli/docsite/source/callbacks.html.md +51 -0
- data/vendor/dry-cli/docsite/source/commands-with-subcommands-and-params.md +86 -0
- data/vendor/dry-cli/docsite/source/commands.html.md +41 -0
- data/vendor/dry-cli/docsite/source/index.html.md +302 -0
- data/vendor/dry-cli/docsite/source/options.html.md +51 -0
- data/vendor/dry-cli/docsite/source/subcommands.html.md +38 -0
- data/vendor/dry-cli/docsite/source/variadic-arguments.html.md +45 -0
- data/vendor/dry-cli/dry-cli.gemspec +36 -0
- data/vendor/dry-cli/lib/dry/cli.rb +224 -0
- data/vendor/dry-cli/lib/dry/cli/banner.rb +135 -0
- data/vendor/dry-cli/lib/dry/cli/command.rb +387 -0
- data/vendor/dry-cli/lib/dry/cli/command_registry.rb +253 -0
- data/vendor/dry-cli/lib/dry/cli/errors.rb +37 -0
- data/vendor/dry-cli/lib/dry/cli/inflector.rb +17 -0
- data/vendor/dry-cli/lib/dry/cli/inline.rb +75 -0
- data/vendor/dry-cli/lib/dry/cli/option.rb +131 -0
- data/vendor/dry-cli/lib/dry/cli/parser.rb +138 -0
- data/vendor/dry-cli/lib/dry/cli/program_name.rb +21 -0
- data/vendor/dry-cli/lib/dry/cli/registry.rb +338 -0
- data/vendor/dry-cli/lib/dry/cli/usage.rb +94 -0
- data/vendor/dry-cli/lib/dry/cli/version.rb +8 -0
- data/vendor/dry-cli/project.yml +13 -0
- data/vendor/dry-cli/spec/integration/commands_spec.rb +14 -0
- data/vendor/dry-cli/spec/integration/inherited_commands_spec.rb +24 -0
- data/vendor/dry-cli/spec/integration/inline_spec.rb +43 -0
- data/vendor/dry-cli/spec/integration/processes_errors_spec.rb +29 -0
- data/vendor/dry-cli/spec/integration/rendering_spec.rb +31 -0
- data/vendor/dry-cli/spec/integration/single_command_spec.rb +81 -0
- data/vendor/dry-cli/spec/integration/subcommands_spec.rb +60 -0
- data/vendor/dry-cli/spec/integration/third_party_gems_spec.rb +18 -0
- data/vendor/dry-cli/spec/spec_helper.rb +15 -0
- data/vendor/dry-cli/spec/support/coverage.rb +15 -0
- data/vendor/dry-cli/spec/support/files.rb +13 -0
- data/vendor/dry-cli/spec/support/fixtures/based +65 -0
- data/vendor/dry-cli/spec/support/fixtures/baz +9 -0
- data/vendor/dry-cli/spec/support/fixtures/baz_command.rb +19 -0
- data/vendor/dry-cli/spec/support/fixtures/foo +588 -0
- data/vendor/dry-cli/spec/support/fixtures/infinites +31 -0
- data/vendor/dry-cli/spec/support/fixtures/inline +20 -0
- data/vendor/dry-cli/spec/support/fixtures/registry.rb +15 -0
- data/vendor/dry-cli/spec/support/fixtures/shared_commands.rb +596 -0
- data/vendor/dry-cli/spec/support/fixtures/with_block.rb +86 -0
- data/vendor/dry-cli/spec/support/fixtures/with_registry.rb +90 -0
- data/vendor/dry-cli/spec/support/fixtures/with_zero_arity_block.rb +87 -0
- data/vendor/dry-cli/spec/support/helpers.rb +37 -0
- data/vendor/dry-cli/spec/support/path.rb +24 -0
- data/vendor/dry-cli/spec/support/rspec.rb +26 -0
- data/vendor/dry-cli/spec/support/rspec_options.rb +16 -0
- data/vendor/dry-cli/spec/support/shared_examples/commands.rb +300 -0
- data/vendor/dry-cli/spec/support/shared_examples/inherited_commands.rb +197 -0
- data/vendor/dry-cli/spec/support/shared_examples/rendering.rb +181 -0
- data/vendor/dry-cli/spec/support/shared_examples/subcommands.rb +226 -0
- data/vendor/dry-cli/spec/support/shared_examples/third_party_gems.rb +49 -0
- data/vendor/dry-cli/spec/support/warnings.rb +10 -0
- data/vendor/dry-cli/spec/unit/dry/cli/cli_spec.rb +123 -0
- data/vendor/dry-cli/spec/unit/dry/cli/inflector_spec.rb +26 -0
- data/vendor/dry-cli/spec/unit/dry/cli/registry_spec.rb +78 -0
- data/vendor/dry-cli/spec/unit/dry/cli/version_spec.rb +7 -0
- data/vendor/strings-ansi/CHANGELOG.md +24 -0
- data/vendor/strings-ansi/CODE_OF_CONDUCT.md +74 -0
- data/vendor/strings-ansi/Gemfile +11 -0
- data/{LICENSE.txt → vendor/strings-ansi/LICENSE.txt} +1 -1
- data/vendor/strings-ansi/README.md +155 -0
- data/vendor/strings-ansi/Rakefile +8 -0
- data/vendor/strings-ansi/appveyor.yml +32 -0
- data/vendor/strings-ansi/bin/console +14 -0
- data/vendor/strings-ansi/bin/setup +8 -0
- data/vendor/strings-ansi/lib/strings-ansi.rb +1 -0
- data/vendor/strings-ansi/lib/strings/ansi.rb +84 -0
- data/vendor/strings-ansi/lib/strings/ansi/extensions.rb +23 -0
- data/vendor/strings-ansi/lib/strings/ansi/version.rb +7 -0
- data/vendor/strings-ansi/spec/fixtures/ansi_codes.yaml +194 -0
- data/vendor/strings-ansi/spec/spec_helper.rb +51 -0
- data/vendor/strings-ansi/spec/unit/ansi_spec.rb +15 -0
- data/vendor/strings-ansi/spec/unit/extensions_spec.rb +19 -0
- data/vendor/strings-ansi/spec/unit/only_ansi_spec.rb +36 -0
- data/vendor/strings-ansi/spec/unit/sanitize_spec.rb +53 -0
- data/vendor/strings-ansi/strings-ansi.gemspec +34 -0
- data/vendor/strings-ansi/tasks/console.rake +11 -0
- data/vendor/strings-ansi/tasks/coverage.rake +11 -0
- data/vendor/strings-ansi/tasks/spec.rake +29 -0
- metadata +274 -188
- data/.github/workflows/main.yml +0 -26
- data/.gitignore +0 -43
- data/.rspec +0 -2
- data/.rubocop.yml +0 -87
- data/.travis.yml +0 -35
- data/Gemfile +0 -2
- data/Gemfile.base +0 -14
- data/Gemfile.base.lock +0 -172
- data/Gemfile.lock +0 -188
- data/Guardfile +0 -16
- data/Makefile +0 -12
- data/README.md +0 -85
- data/Rakefile +0 -31
- data/bin/bundle +0 -114
- data/bin/console +0 -29
- data/bin/guard +0 -29
- data/bin/rake +0 -29
- data/bin/rfix +0 -29
- data/bin/rspec +0 -29
- data/bin/setup +0 -29
- data/ci/Gemfile.rubocop-0.80 +0 -2
- data/ci/Gemfile.rubocop-0.80.lock +0 -170
- data/ci/Gemfile.rubocop-0.81 +0 -2
- data/ci/Gemfile.rubocop-0.81.lock +0 -170
- data/ci/Gemfile.rubocop-0.82 +0 -2
- data/ci/Gemfile.rubocop-0.82.lock +0 -170
- data/ci/Gemfile.rubocop-0.83 +0 -2
- data/ci/Gemfile.rubocop-0.83.lock +0 -168
- data/ci/Gemfile.rubocop-0.84 +0 -2
- data/ci/Gemfile.rubocop-0.84.lock +0 -171
- data/ci/Gemfile.rubocop-0.85 +0 -2
- data/ci/Gemfile.rubocop-0.85.1 +0 -2
- data/ci/Gemfile.rubocop-0.85.1.lock +0 -173
- data/ci/Gemfile.rubocop-0.85.lock +0 -173
- data/lib/rfix/box.rb +0 -112
- data/lib/rfix/branches/base.rb +0 -15
- data/lib/rfix/branches/head.rb +0 -13
- data/lib/rfix/branches/main.rb +0 -28
- data/lib/rfix/branches/name.rb +0 -23
- data/lib/rfix/branches/reference.rb +0 -21
- data/lib/rfix/branches/upstream.rb +0 -13
- data/lib/rfix/cmd.rb +0 -39
- data/lib/rfix/commands/branch.rb +0 -15
- data/lib/rfix/commands/extensions/options.rb +0 -8
- data/lib/rfix/commands/help.rb +0 -7
- data/lib/rfix/commands/helper/args.rb +0 -141
- data/lib/rfix/commands/helper/help.rb +0 -6
- data/lib/rfix/commands/helper/loader.rb +0 -6
- data/lib/rfix/commands/helper/option.rb +0 -0
- data/lib/rfix/commands/helper/params.rb +0 -0
- data/lib/rfix/commands/helper/rubocop.rb +0 -17
- data/lib/rfix/commands/info.rb +0 -30
- data/lib/rfix/commands/lint.rb +0 -22
- data/lib/rfix/commands/local.rb +0 -12
- data/lib/rfix/commands/origin.rb +0 -19
- data/lib/rfix/commands/setup.rb +0 -29
- data/lib/rfix/commands/welcome.rb +0 -24
- data/lib/rfix/deleted.rb +0 -13
- data/lib/rfix/extensions/extensions.rb +0 -18
- data/lib/rfix/extensions/offense.rb +0 -78
- data/lib/rfix/extensions/string.rb +0 -8
- data/lib/rfix/file_cache.rb +0 -59
- data/lib/rfix/git_helper.rb +0 -59
- data/lib/rfix/indentation.rb +0 -39
- data/lib/rfix/loader/bundler.rb +0 -37
- data/lib/rfix/loader/env.rb +0 -33
- data/lib/rfix/loader/spec.rb +0 -41
- data/lib/rfix/no_file.rb +0 -13
- data/lib/rfix/rfix.rb +0 -34
- data/lib/rfix/tracked.rb +0 -72
- data/lib/rfix/tracked_file.rb +0 -16
- data/lib/rfix/untracked.rb +0 -13
- data/resources/ps.png +0 -0
- data/tasks/bump.rake +0 -11
- data/tasks/bundle.rake +0 -17
- data/tasks/complex.rake +0 -54
- data/tasks/execute.rake +0 -38
- data/tasks/libgit2.rake +0 -33
- data/tasks/simple.rake +0 -62
- data/tasks/travis.rake +0 -74
- data/tasks/vendor.rake +0 -34
data/ci/Gemfile.rubocop-0.80
DELETED
@@ -1,170 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
rfix (1.0.20)
|
5
|
-
cri (~> 2.15.10)
|
6
|
-
listen (~> 3.0)
|
7
|
-
rainbow (~> 3.0)
|
8
|
-
rouge (~> 3.20)
|
9
|
-
rubocop (>= 0.80)
|
10
|
-
rugged (~> 1.0.0)
|
11
|
-
|
12
|
-
GEM
|
13
|
-
remote: https://rubygems.org/
|
14
|
-
specs:
|
15
|
-
activesupport (6.0.3.2)
|
16
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
17
|
-
i18n (>= 0.7, < 2)
|
18
|
-
minitest (~> 5.1)
|
19
|
-
tzinfo (~> 1.1)
|
20
|
-
zeitwerk (~> 2.2, >= 2.2.2)
|
21
|
-
aruba (1.0.2)
|
22
|
-
childprocess (>= 2.0, < 5.0)
|
23
|
-
contracts (~> 0.16.0)
|
24
|
-
cucumber (>= 2.4, < 5.0)
|
25
|
-
ffi (~> 1.9)
|
26
|
-
rspec-expectations (~> 3.4)
|
27
|
-
thor (~> 1.0)
|
28
|
-
ast (2.4.1)
|
29
|
-
builder (3.2.4)
|
30
|
-
childprocess (4.0.0)
|
31
|
-
coderay (1.1.3)
|
32
|
-
colorize (0.8.1)
|
33
|
-
concurrent-ruby (1.1.6)
|
34
|
-
contracts (0.16.0)
|
35
|
-
cri (2.15.10)
|
36
|
-
cucumber (4.0.0)
|
37
|
-
builder (~> 3.2, >= 3.2.3)
|
38
|
-
cucumber-core (~> 7.0, >= 7.0.0)
|
39
|
-
cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
|
40
|
-
cucumber-gherkin (~> 13.0, >= 13.0.0)
|
41
|
-
cucumber-html-formatter (~> 6.0, >= 6.0.1)
|
42
|
-
cucumber-messages (~> 12.1, >= 12.1.1)
|
43
|
-
cucumber-wire (~> 3.0, >= 3.0.0)
|
44
|
-
diff-lcs (~> 1.3, >= 1.3)
|
45
|
-
multi_test (~> 0.1, >= 0.1.2)
|
46
|
-
sys-uname (~> 1.0, >= 1.0.2)
|
47
|
-
cucumber-core (7.0.0)
|
48
|
-
cucumber-gherkin (~> 13.0, >= 13.0.0)
|
49
|
-
cucumber-messages (~> 12.1, >= 12.1.1)
|
50
|
-
cucumber-tag-expressions (~> 2.0, >= 2.0.4)
|
51
|
-
cucumber-cucumber-expressions (10.2.0)
|
52
|
-
cucumber-gherkin (13.0.0)
|
53
|
-
cucumber-messages (~> 12.0, >= 12.0.0)
|
54
|
-
cucumber-html-formatter (6.0.3)
|
55
|
-
cucumber-messages (~> 12.1, >= 12.1.1)
|
56
|
-
cucumber-messages (12.1.1)
|
57
|
-
protobuf-cucumber (~> 3.10, >= 3.10.8)
|
58
|
-
cucumber-tag-expressions (2.0.4)
|
59
|
-
cucumber-wire (3.0.0)
|
60
|
-
cucumber-core (~> 7.0, >= 7.0.0)
|
61
|
-
cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
|
62
|
-
cucumber-messages (~> 12.1, >= 12.1.1)
|
63
|
-
diff-lcs (1.3)
|
64
|
-
faker (2.13.0)
|
65
|
-
i18n (>= 1.6, < 2)
|
66
|
-
ffi (1.13.1)
|
67
|
-
formatador (0.2.5)
|
68
|
-
gem-release (2.1.1)
|
69
|
-
git (1.7.0)
|
70
|
-
rchardet (~> 1.8)
|
71
|
-
guard (2.16.2)
|
72
|
-
formatador (>= 0.2.4)
|
73
|
-
listen (>= 2.7, < 4.0)
|
74
|
-
lumberjack (>= 1.0.12, < 2.0)
|
75
|
-
nenv (~> 0.1)
|
76
|
-
notiffany (~> 0.0)
|
77
|
-
pry (>= 0.9.12)
|
78
|
-
shellany (~> 0.0)
|
79
|
-
thor (>= 0.18.1)
|
80
|
-
guard-compat (1.2.1)
|
81
|
-
guard-rspec (4.7.3)
|
82
|
-
guard (~> 2.1)
|
83
|
-
guard-compat (~> 1.1)
|
84
|
-
rspec (>= 2.99.0, < 4.0)
|
85
|
-
i18n (1.8.3)
|
86
|
-
concurrent-ruby (~> 1.0)
|
87
|
-
jaro_winkler (1.5.4)
|
88
|
-
listen (3.2.1)
|
89
|
-
rb-fsevent (~> 0.10, >= 0.10.3)
|
90
|
-
rb-inotify (~> 0.9, >= 0.9.10)
|
91
|
-
lumberjack (1.2.6)
|
92
|
-
method_source (1.0.0)
|
93
|
-
middleware (0.1.0)
|
94
|
-
minitest (5.14.1)
|
95
|
-
multi_test (0.1.2)
|
96
|
-
nenv (0.3.0)
|
97
|
-
notiffany (0.1.3)
|
98
|
-
nenv (~> 0.1)
|
99
|
-
shellany (~> 0.0)
|
100
|
-
parallel (1.19.2)
|
101
|
-
parser (2.7.1.4)
|
102
|
-
ast (~> 2.4.1)
|
103
|
-
protobuf-cucumber (3.10.8)
|
104
|
-
activesupport (>= 3.2)
|
105
|
-
middleware
|
106
|
-
thor
|
107
|
-
thread_safe
|
108
|
-
pry (0.13.1)
|
109
|
-
coderay (~> 1.1)
|
110
|
-
method_source (~> 1.0)
|
111
|
-
rainbow (3.0.0)
|
112
|
-
rake (12.3.3)
|
113
|
-
rb-fsevent (0.10.4)
|
114
|
-
rb-inotify (0.10.1)
|
115
|
-
ffi (~> 1.0)
|
116
|
-
rchardet (1.8.0)
|
117
|
-
rexml (3.2.4)
|
118
|
-
rouge (3.20.0)
|
119
|
-
rspec (3.9.0)
|
120
|
-
rspec-core (~> 3.9.0)
|
121
|
-
rspec-expectations (~> 3.9.0)
|
122
|
-
rspec-mocks (~> 3.9.0)
|
123
|
-
rspec-core (3.9.2)
|
124
|
-
rspec-support (~> 3.9.3)
|
125
|
-
rspec-expectations (3.9.2)
|
126
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
127
|
-
rspec-support (~> 3.9.0)
|
128
|
-
rspec-mocks (3.9.1)
|
129
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
130
|
-
rspec-support (~> 3.9.0)
|
131
|
-
rspec-support (3.9.3)
|
132
|
-
rubocop (0.80.0)
|
133
|
-
jaro_winkler (~> 1.5.1)
|
134
|
-
parallel (~> 1.10)
|
135
|
-
parser (>= 2.7.0.1)
|
136
|
-
rainbow (>= 2.2.2, < 4.0)
|
137
|
-
rexml
|
138
|
-
ruby-progressbar (~> 1.7)
|
139
|
-
unicode-display_width (>= 1.4.0, < 1.7)
|
140
|
-
ruby-progressbar (1.10.1)
|
141
|
-
rugged (1.0.1)
|
142
|
-
shellany (0.0.1)
|
143
|
-
sys-uname (1.2.1)
|
144
|
-
ffi (>= 1.0.0)
|
145
|
-
thor (1.0.1)
|
146
|
-
thread_safe (0.3.6)
|
147
|
-
tzinfo (1.2.7)
|
148
|
-
thread_safe (~> 0.1)
|
149
|
-
unicode-display_width (1.6.1)
|
150
|
-
zeitwerk (2.3.0)
|
151
|
-
|
152
|
-
PLATFORMS
|
153
|
-
ruby
|
154
|
-
|
155
|
-
DEPENDENCIES
|
156
|
-
aruba (~> 1.0)
|
157
|
-
colorize
|
158
|
-
faker
|
159
|
-
gem-release
|
160
|
-
git (~> 1.7.0)
|
161
|
-
guard
|
162
|
-
guard-rspec
|
163
|
-
pry
|
164
|
-
rake (~> 12.3)
|
165
|
-
rfix!
|
166
|
-
rspec (~> 3.0)
|
167
|
-
rubocop (= 0.80)
|
168
|
-
|
169
|
-
BUNDLED WITH
|
170
|
-
2.1.4
|
data/ci/Gemfile.rubocop-0.81
DELETED
@@ -1,170 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
rfix (1.0.20)
|
5
|
-
cri (~> 2.15.10)
|
6
|
-
listen (~> 3.0)
|
7
|
-
rainbow (~> 3.0)
|
8
|
-
rouge (~> 3.20)
|
9
|
-
rubocop (>= 0.80)
|
10
|
-
rugged (~> 1.0.0)
|
11
|
-
|
12
|
-
GEM
|
13
|
-
remote: https://rubygems.org/
|
14
|
-
specs:
|
15
|
-
activesupport (6.0.3.2)
|
16
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
17
|
-
i18n (>= 0.7, < 2)
|
18
|
-
minitest (~> 5.1)
|
19
|
-
tzinfo (~> 1.1)
|
20
|
-
zeitwerk (~> 2.2, >= 2.2.2)
|
21
|
-
aruba (1.0.2)
|
22
|
-
childprocess (>= 2.0, < 5.0)
|
23
|
-
contracts (~> 0.16.0)
|
24
|
-
cucumber (>= 2.4, < 5.0)
|
25
|
-
ffi (~> 1.9)
|
26
|
-
rspec-expectations (~> 3.4)
|
27
|
-
thor (~> 1.0)
|
28
|
-
ast (2.4.1)
|
29
|
-
builder (3.2.4)
|
30
|
-
childprocess (4.0.0)
|
31
|
-
coderay (1.1.3)
|
32
|
-
colorize (0.8.1)
|
33
|
-
concurrent-ruby (1.1.6)
|
34
|
-
contracts (0.16.0)
|
35
|
-
cri (2.15.10)
|
36
|
-
cucumber (4.0.0)
|
37
|
-
builder (~> 3.2, >= 3.2.3)
|
38
|
-
cucumber-core (~> 7.0, >= 7.0.0)
|
39
|
-
cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
|
40
|
-
cucumber-gherkin (~> 13.0, >= 13.0.0)
|
41
|
-
cucumber-html-formatter (~> 6.0, >= 6.0.1)
|
42
|
-
cucumber-messages (~> 12.1, >= 12.1.1)
|
43
|
-
cucumber-wire (~> 3.0, >= 3.0.0)
|
44
|
-
diff-lcs (~> 1.3, >= 1.3)
|
45
|
-
multi_test (~> 0.1, >= 0.1.2)
|
46
|
-
sys-uname (~> 1.0, >= 1.0.2)
|
47
|
-
cucumber-core (7.0.0)
|
48
|
-
cucumber-gherkin (~> 13.0, >= 13.0.0)
|
49
|
-
cucumber-messages (~> 12.1, >= 12.1.1)
|
50
|
-
cucumber-tag-expressions (~> 2.0, >= 2.0.4)
|
51
|
-
cucumber-cucumber-expressions (10.2.0)
|
52
|
-
cucumber-gherkin (13.0.0)
|
53
|
-
cucumber-messages (~> 12.0, >= 12.0.0)
|
54
|
-
cucumber-html-formatter (6.0.3)
|
55
|
-
cucumber-messages (~> 12.1, >= 12.1.1)
|
56
|
-
cucumber-messages (12.1.1)
|
57
|
-
protobuf-cucumber (~> 3.10, >= 3.10.8)
|
58
|
-
cucumber-tag-expressions (2.0.4)
|
59
|
-
cucumber-wire (3.0.0)
|
60
|
-
cucumber-core (~> 7.0, >= 7.0.0)
|
61
|
-
cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
|
62
|
-
cucumber-messages (~> 12.1, >= 12.1.1)
|
63
|
-
diff-lcs (1.3)
|
64
|
-
faker (2.13.0)
|
65
|
-
i18n (>= 1.6, < 2)
|
66
|
-
ffi (1.13.1)
|
67
|
-
formatador (0.2.5)
|
68
|
-
gem-release (2.1.1)
|
69
|
-
git (1.7.0)
|
70
|
-
rchardet (~> 1.8)
|
71
|
-
guard (2.16.2)
|
72
|
-
formatador (>= 0.2.4)
|
73
|
-
listen (>= 2.7, < 4.0)
|
74
|
-
lumberjack (>= 1.0.12, < 2.0)
|
75
|
-
nenv (~> 0.1)
|
76
|
-
notiffany (~> 0.0)
|
77
|
-
pry (>= 0.9.12)
|
78
|
-
shellany (~> 0.0)
|
79
|
-
thor (>= 0.18.1)
|
80
|
-
guard-compat (1.2.1)
|
81
|
-
guard-rspec (4.7.3)
|
82
|
-
guard (~> 2.1)
|
83
|
-
guard-compat (~> 1.1)
|
84
|
-
rspec (>= 2.99.0, < 4.0)
|
85
|
-
i18n (1.8.3)
|
86
|
-
concurrent-ruby (~> 1.0)
|
87
|
-
jaro_winkler (1.5.4)
|
88
|
-
listen (3.2.1)
|
89
|
-
rb-fsevent (~> 0.10, >= 0.10.3)
|
90
|
-
rb-inotify (~> 0.9, >= 0.9.10)
|
91
|
-
lumberjack (1.2.6)
|
92
|
-
method_source (1.0.0)
|
93
|
-
middleware (0.1.0)
|
94
|
-
minitest (5.14.1)
|
95
|
-
multi_test (0.1.2)
|
96
|
-
nenv (0.3.0)
|
97
|
-
notiffany (0.1.3)
|
98
|
-
nenv (~> 0.1)
|
99
|
-
shellany (~> 0.0)
|
100
|
-
parallel (1.19.2)
|
101
|
-
parser (2.7.1.4)
|
102
|
-
ast (~> 2.4.1)
|
103
|
-
protobuf-cucumber (3.10.8)
|
104
|
-
activesupport (>= 3.2)
|
105
|
-
middleware
|
106
|
-
thor
|
107
|
-
thread_safe
|
108
|
-
pry (0.13.1)
|
109
|
-
coderay (~> 1.1)
|
110
|
-
method_source (~> 1.0)
|
111
|
-
rainbow (3.0.0)
|
112
|
-
rake (12.3.3)
|
113
|
-
rb-fsevent (0.10.4)
|
114
|
-
rb-inotify (0.10.1)
|
115
|
-
ffi (~> 1.0)
|
116
|
-
rchardet (1.8.0)
|
117
|
-
rexml (3.2.4)
|
118
|
-
rouge (3.20.0)
|
119
|
-
rspec (3.9.0)
|
120
|
-
rspec-core (~> 3.9.0)
|
121
|
-
rspec-expectations (~> 3.9.0)
|
122
|
-
rspec-mocks (~> 3.9.0)
|
123
|
-
rspec-core (3.9.2)
|
124
|
-
rspec-support (~> 3.9.3)
|
125
|
-
rspec-expectations (3.9.2)
|
126
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
127
|
-
rspec-support (~> 3.9.0)
|
128
|
-
rspec-mocks (3.9.1)
|
129
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
130
|
-
rspec-support (~> 3.9.0)
|
131
|
-
rspec-support (3.9.3)
|
132
|
-
rubocop (0.81.0)
|
133
|
-
jaro_winkler (~> 1.5.1)
|
134
|
-
parallel (~> 1.10)
|
135
|
-
parser (>= 2.7.0.1)
|
136
|
-
rainbow (>= 2.2.2, < 4.0)
|
137
|
-
rexml
|
138
|
-
ruby-progressbar (~> 1.7)
|
139
|
-
unicode-display_width (>= 1.4.0, < 2.0)
|
140
|
-
ruby-progressbar (1.10.1)
|
141
|
-
rugged (1.0.1)
|
142
|
-
shellany (0.0.1)
|
143
|
-
sys-uname (1.2.1)
|
144
|
-
ffi (>= 1.0.0)
|
145
|
-
thor (1.0.1)
|
146
|
-
thread_safe (0.3.6)
|
147
|
-
tzinfo (1.2.7)
|
148
|
-
thread_safe (~> 0.1)
|
149
|
-
unicode-display_width (1.7.0)
|
150
|
-
zeitwerk (2.3.0)
|
151
|
-
|
152
|
-
PLATFORMS
|
153
|
-
ruby
|
154
|
-
|
155
|
-
DEPENDENCIES
|
156
|
-
aruba (~> 1.0)
|
157
|
-
colorize
|
158
|
-
faker
|
159
|
-
gem-release
|
160
|
-
git (~> 1.7.0)
|
161
|
-
guard
|
162
|
-
guard-rspec
|
163
|
-
pry
|
164
|
-
rake (~> 12.3)
|
165
|
-
rfix!
|
166
|
-
rspec (~> 3.0)
|
167
|
-
rubocop (= 0.81)
|
168
|
-
|
169
|
-
BUNDLED WITH
|
170
|
-
2.1.4
|
data/ci/Gemfile.rubocop-0.82
DELETED
@@ -1,170 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
rfix (1.0.20)
|
5
|
-
cri (~> 2.15.10)
|
6
|
-
listen (~> 3.0)
|
7
|
-
rainbow (~> 3.0)
|
8
|
-
rouge (~> 3.20)
|
9
|
-
rubocop (>= 0.80)
|
10
|
-
rugged (~> 1.0.0)
|
11
|
-
|
12
|
-
GEM
|
13
|
-
remote: https://rubygems.org/
|
14
|
-
specs:
|
15
|
-
activesupport (6.0.3.2)
|
16
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
17
|
-
i18n (>= 0.7, < 2)
|
18
|
-
minitest (~> 5.1)
|
19
|
-
tzinfo (~> 1.1)
|
20
|
-
zeitwerk (~> 2.2, >= 2.2.2)
|
21
|
-
aruba (1.0.2)
|
22
|
-
childprocess (>= 2.0, < 5.0)
|
23
|
-
contracts (~> 0.16.0)
|
24
|
-
cucumber (>= 2.4, < 5.0)
|
25
|
-
ffi (~> 1.9)
|
26
|
-
rspec-expectations (~> 3.4)
|
27
|
-
thor (~> 1.0)
|
28
|
-
ast (2.4.1)
|
29
|
-
builder (3.2.4)
|
30
|
-
childprocess (4.0.0)
|
31
|
-
coderay (1.1.3)
|
32
|
-
colorize (0.8.1)
|
33
|
-
concurrent-ruby (1.1.6)
|
34
|
-
contracts (0.16.0)
|
35
|
-
cri (2.15.10)
|
36
|
-
cucumber (4.0.0)
|
37
|
-
builder (~> 3.2, >= 3.2.3)
|
38
|
-
cucumber-core (~> 7.0, >= 7.0.0)
|
39
|
-
cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
|
40
|
-
cucumber-gherkin (~> 13.0, >= 13.0.0)
|
41
|
-
cucumber-html-formatter (~> 6.0, >= 6.0.1)
|
42
|
-
cucumber-messages (~> 12.1, >= 12.1.1)
|
43
|
-
cucumber-wire (~> 3.0, >= 3.0.0)
|
44
|
-
diff-lcs (~> 1.3, >= 1.3)
|
45
|
-
multi_test (~> 0.1, >= 0.1.2)
|
46
|
-
sys-uname (~> 1.0, >= 1.0.2)
|
47
|
-
cucumber-core (7.0.0)
|
48
|
-
cucumber-gherkin (~> 13.0, >= 13.0.0)
|
49
|
-
cucumber-messages (~> 12.1, >= 12.1.1)
|
50
|
-
cucumber-tag-expressions (~> 2.0, >= 2.0.4)
|
51
|
-
cucumber-cucumber-expressions (10.2.0)
|
52
|
-
cucumber-gherkin (13.0.0)
|
53
|
-
cucumber-messages (~> 12.0, >= 12.0.0)
|
54
|
-
cucumber-html-formatter (6.0.3)
|
55
|
-
cucumber-messages (~> 12.1, >= 12.1.1)
|
56
|
-
cucumber-messages (12.1.1)
|
57
|
-
protobuf-cucumber (~> 3.10, >= 3.10.8)
|
58
|
-
cucumber-tag-expressions (2.0.4)
|
59
|
-
cucumber-wire (3.0.0)
|
60
|
-
cucumber-core (~> 7.0, >= 7.0.0)
|
61
|
-
cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
|
62
|
-
cucumber-messages (~> 12.1, >= 12.1.1)
|
63
|
-
diff-lcs (1.3)
|
64
|
-
faker (2.13.0)
|
65
|
-
i18n (>= 1.6, < 2)
|
66
|
-
ffi (1.13.1)
|
67
|
-
formatador (0.2.5)
|
68
|
-
gem-release (2.1.1)
|
69
|
-
git (1.7.0)
|
70
|
-
rchardet (~> 1.8)
|
71
|
-
guard (2.16.2)
|
72
|
-
formatador (>= 0.2.4)
|
73
|
-
listen (>= 2.7, < 4.0)
|
74
|
-
lumberjack (>= 1.0.12, < 2.0)
|
75
|
-
nenv (~> 0.1)
|
76
|
-
notiffany (~> 0.0)
|
77
|
-
pry (>= 0.9.12)
|
78
|
-
shellany (~> 0.0)
|
79
|
-
thor (>= 0.18.1)
|
80
|
-
guard-compat (1.2.1)
|
81
|
-
guard-rspec (4.7.3)
|
82
|
-
guard (~> 2.1)
|
83
|
-
guard-compat (~> 1.1)
|
84
|
-
rspec (>= 2.99.0, < 4.0)
|
85
|
-
i18n (1.8.3)
|
86
|
-
concurrent-ruby (~> 1.0)
|
87
|
-
jaro_winkler (1.5.4)
|
88
|
-
listen (3.2.1)
|
89
|
-
rb-fsevent (~> 0.10, >= 0.10.3)
|
90
|
-
rb-inotify (~> 0.9, >= 0.9.10)
|
91
|
-
lumberjack (1.2.6)
|
92
|
-
method_source (1.0.0)
|
93
|
-
middleware (0.1.0)
|
94
|
-
minitest (5.14.1)
|
95
|
-
multi_test (0.1.2)
|
96
|
-
nenv (0.3.0)
|
97
|
-
notiffany (0.1.3)
|
98
|
-
nenv (~> 0.1)
|
99
|
-
shellany (~> 0.0)
|
100
|
-
parallel (1.19.2)
|
101
|
-
parser (2.7.1.4)
|
102
|
-
ast (~> 2.4.1)
|
103
|
-
protobuf-cucumber (3.10.8)
|
104
|
-
activesupport (>= 3.2)
|
105
|
-
middleware
|
106
|
-
thor
|
107
|
-
thread_safe
|
108
|
-
pry (0.13.1)
|
109
|
-
coderay (~> 1.1)
|
110
|
-
method_source (~> 1.0)
|
111
|
-
rainbow (3.0.0)
|
112
|
-
rake (12.3.3)
|
113
|
-
rb-fsevent (0.10.4)
|
114
|
-
rb-inotify (0.10.1)
|
115
|
-
ffi (~> 1.0)
|
116
|
-
rchardet (1.8.0)
|
117
|
-
rexml (3.2.4)
|
118
|
-
rouge (3.20.0)
|
119
|
-
rspec (3.9.0)
|
120
|
-
rspec-core (~> 3.9.0)
|
121
|
-
rspec-expectations (~> 3.9.0)
|
122
|
-
rspec-mocks (~> 3.9.0)
|
123
|
-
rspec-core (3.9.2)
|
124
|
-
rspec-support (~> 3.9.3)
|
125
|
-
rspec-expectations (3.9.2)
|
126
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
127
|
-
rspec-support (~> 3.9.0)
|
128
|
-
rspec-mocks (3.9.1)
|
129
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
130
|
-
rspec-support (~> 3.9.0)
|
131
|
-
rspec-support (3.9.3)
|
132
|
-
rubocop (0.82.0)
|
133
|
-
jaro_winkler (~> 1.5.1)
|
134
|
-
parallel (~> 1.10)
|
135
|
-
parser (>= 2.7.0.1)
|
136
|
-
rainbow (>= 2.2.2, < 4.0)
|
137
|
-
rexml
|
138
|
-
ruby-progressbar (~> 1.7)
|
139
|
-
unicode-display_width (>= 1.4.0, < 2.0)
|
140
|
-
ruby-progressbar (1.10.1)
|
141
|
-
rugged (1.0.1)
|
142
|
-
shellany (0.0.1)
|
143
|
-
sys-uname (1.2.1)
|
144
|
-
ffi (>= 1.0.0)
|
145
|
-
thor (1.0.1)
|
146
|
-
thread_safe (0.3.6)
|
147
|
-
tzinfo (1.2.7)
|
148
|
-
thread_safe (~> 0.1)
|
149
|
-
unicode-display_width (1.7.0)
|
150
|
-
zeitwerk (2.3.0)
|
151
|
-
|
152
|
-
PLATFORMS
|
153
|
-
ruby
|
154
|
-
|
155
|
-
DEPENDENCIES
|
156
|
-
aruba (~> 1.0)
|
157
|
-
colorize
|
158
|
-
faker
|
159
|
-
gem-release
|
160
|
-
git (~> 1.7.0)
|
161
|
-
guard
|
162
|
-
guard-rspec
|
163
|
-
pry
|
164
|
-
rake (~> 12.3)
|
165
|
-
rfix!
|
166
|
-
rspec (~> 3.0)
|
167
|
-
rubocop (= 0.82.0)
|
168
|
-
|
169
|
-
BUNDLED WITH
|
170
|
-
2.1.4
|