rfix 1.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.github/workflows/main.yml +38 -0
- data/.gitignore +43 -0
- data/.rspec +2 -0
- data/.rubocop.yml +87 -0
- data/.travis.yml +37 -0
- data/Gemfile +2 -0
- data/Gemfile.base +14 -0
- data/Gemfile.base.lock +172 -0
- data/Gemfile.lock +181 -0
- data/Guardfile +16 -0
- data/LICENSE.txt +21 -0
- data/Makefile +4 -0
- data/README.md +92 -0
- data/Rakefile +27 -0
- data/bin/bundle +114 -0
- data/bin/console +29 -0
- data/bin/guard +29 -0
- data/bin/rake +29 -0
- data/bin/rfix +29 -0
- data/bin/rspec +29 -0
- data/bin/setup +29 -0
- data/ci/Gemfile.rubocop-0.80 +2 -0
- data/ci/Gemfile.rubocop-0.80.lock +170 -0
- data/ci/Gemfile.rubocop-0.81 +2 -0
- data/ci/Gemfile.rubocop-0.81.lock +170 -0
- data/ci/Gemfile.rubocop-0.82 +2 -0
- data/ci/Gemfile.rubocop-0.82.lock +170 -0
- data/ci/Gemfile.rubocop-0.83 +2 -0
- data/ci/Gemfile.rubocop-0.83.lock +168 -0
- data/ci/Gemfile.rubocop-0.84 +2 -0
- data/ci/Gemfile.rubocop-0.84.lock +171 -0
- data/ci/Gemfile.rubocop-0.85 +2 -0
- data/ci/Gemfile.rubocop-0.85.1 +2 -0
- data/ci/Gemfile.rubocop-0.85.1.lock +173 -0
- data/ci/Gemfile.rubocop-0.85.lock +173 -0
- data/exe/rfix +30 -0
- data/lib/rfix.rb +34 -0
- data/lib/rfix/box.rb +112 -0
- data/lib/rfix/branch.rb +31 -0
- data/lib/rfix/branches/base.rb +29 -0
- data/lib/rfix/branches/head.rb +13 -0
- data/lib/rfix/branches/main.rb +34 -0
- data/lib/rfix/branches/name.rb +23 -0
- data/lib/rfix/branches/reference.rb +21 -0
- data/lib/rfix/branches/upstream.rb +13 -0
- data/lib/rfix/cmd.rb +39 -0
- data/lib/rfix/commands/branch.rb +15 -0
- data/lib/rfix/commands/extensions/options.rb +8 -0
- data/lib/rfix/commands/help.rb +7 -0
- data/lib/rfix/commands/helper/args.rb +137 -0
- data/lib/rfix/commands/helper/help.rb +6 -0
- data/lib/rfix/commands/helper/loader.rb +6 -0
- 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 +17 -0
- data/lib/rfix/commands/info.rb +30 -0
- data/lib/rfix/commands/lint.rb +23 -0
- data/lib/rfix/commands/local.rb +12 -0
- data/lib/rfix/commands/origin.rb +19 -0
- data/lib/rfix/commands/setup.rb +29 -0
- data/lib/rfix/commands/welcome.rb +24 -0
- data/lib/rfix/deleted.rb +13 -0
- data/lib/rfix/error.rb +2 -0
- data/lib/rfix/extensions/extensions.rb +18 -0
- data/lib/rfix/extensions/offense.rb +78 -0
- data/lib/rfix/extensions/string.rb +8 -0
- data/lib/rfix/file.rb +46 -0
- data/lib/rfix/file_cache.rb +59 -0
- data/lib/rfix/formatter.rb +126 -0
- data/lib/rfix/git_helper.rb +59 -0
- data/lib/rfix/log.rb +131 -0
- data/lib/rfix/no_file.rb +13 -0
- data/lib/rfix/rake/paths.rb +50 -0
- data/lib/rfix/rake/support.rb +75 -0
- data/lib/rfix/repository.rb +204 -0
- data/lib/rfix/rfix.rb +34 -0
- data/lib/rfix/tracked.rb +72 -0
- data/lib/rfix/tracked_file.rb +16 -0
- data/lib/rfix/untracked.rb +13 -0
- data/lib/rfix/version.rb +5 -0
- data/resources/ps.png +0 -0
- data/rfix.gemspec +68 -0
- data/tasks/bump.rake +11 -0
- data/tasks/bundle.rake +17 -0
- data/tasks/complex.rake +54 -0
- data/tasks/execute.rake +38 -0
- data/tasks/libgit2.rake +33 -0
- data/tasks/simple.rake +62 -0
- data/tasks/travis.rake +74 -0
- data/tasks/vendor.rake +34 -0
- metadata +350 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 2a058a5b465d3918eecd37122aacdcc394bbbb9aad95a85e6e9bd154134af18b
|
4
|
+
data.tar.gz: 7925260756834b562b5c687b00fa77abf631d135381a7baef074f656aa72dd6e
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 066f64a42b07c43da1b69cc08a731a261e42f28a00b233c2cd9d43e57af86399e76fea29722f855d78e74f5516467ee76d7a076ed236d159ca2693f4a69993d1
|
7
|
+
data.tar.gz: 4455562a664390c040b827df9b8fee94a08f40e95d699186810c2be30148ae3b1805b7d95eb72008833e34a00118fb6db9d13155f54de75321f9ebf1530d5b55
|
@@ -0,0 +1,38 @@
|
|
1
|
+
---
|
2
|
+
name: pre-release
|
3
|
+
on: [push]
|
4
|
+
env:
|
5
|
+
RUBYGEMS_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
|
6
|
+
GITHUB_API_TOKEN: ${{secrets.API_KEY}}
|
7
|
+
jobs:
|
8
|
+
setup:
|
9
|
+
container: ruby:2.7
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
steps:
|
12
|
+
- uses: actions/checkout@v2
|
13
|
+
|
14
|
+
- run: apt-get update -y
|
15
|
+
- run: apt-get install -y bash git libffi-dev build-essential wget cmake
|
16
|
+
|
17
|
+
- run: gem install bundler
|
18
|
+
- run: bundle config build.rugged --use-system-libraries
|
19
|
+
- run: bundle config build.ffi --use-system-libraries
|
20
|
+
- run: gem install rake rspec colorize
|
21
|
+
- run: rake libgit2:install
|
22
|
+
|
23
|
+
- run: bundle install --path vendor/bundle
|
24
|
+
- run: rake execute:local execute:origin execute:lint execute:branch
|
25
|
+
|
26
|
+
- run: git config user.email "linus@oleander.io"
|
27
|
+
- run: git config user.name "Linus Oleander"
|
28
|
+
|
29
|
+
- name: Publish to RubyGems
|
30
|
+
run: |
|
31
|
+
mkdir -p $HOME/.gem
|
32
|
+
touch $HOME/.gem/credentials
|
33
|
+
chmod 0600 $HOME/.gem/credentials
|
34
|
+
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
35
|
+
gem build *.gemspec
|
36
|
+
gem push *.gem
|
37
|
+
env:
|
38
|
+
GEM_HOST_API_KEY: "Bearer ${{secrets.RUBYGEMS_API_KEY}}"
|
data/.gitignore
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
*.gem
|
2
|
+
build
|
3
|
+
.vagrant
|
4
|
+
.DS_Store
|
5
|
+
.bundle
|
6
|
+
|
7
|
+
.starscope.db
|
8
|
+
cscope.out
|
9
|
+
tags
|
10
|
+
|
11
|
+
.byebug_history
|
12
|
+
|
13
|
+
.rubocop-*
|
14
|
+
doc
|
15
|
+
vendor/*
|
16
|
+
tmp/*
|
17
|
+
.rspec_status
|
18
|
+
pkg/*.gem
|
19
|
+
bin/_guard-core
|
20
|
+
bin/aruba
|
21
|
+
bin/coderay
|
22
|
+
bin/cucumber
|
23
|
+
bin/cucumber-html-formatter
|
24
|
+
bin/gherkin
|
25
|
+
bin/gherkin-ruby
|
26
|
+
bin/git-fame
|
27
|
+
bin/htmldiff
|
28
|
+
bin/ldiff
|
29
|
+
bin/listen
|
30
|
+
bin/protoc-gen-ruby
|
31
|
+
bin/pry
|
32
|
+
bin/rougify
|
33
|
+
bin/rpc_server
|
34
|
+
bin/rubocop
|
35
|
+
bin/ruby-parse
|
36
|
+
bin/ruby-rewrite
|
37
|
+
bin/thor
|
38
|
+
ci/vendor/
|
39
|
+
git
|
40
|
+
|
41
|
+
spec/fixtures/complex.bundle
|
42
|
+
spec/fixtures/simple.bundle
|
43
|
+
spec/support/g.rb
|
data/.rspec
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,87 @@
|
|
1
|
+
AllCops:
|
2
|
+
Exclude:
|
3
|
+
- 'ci/*'
|
4
|
+
- 'bin/*'
|
5
|
+
- 'vendor/bundle/**/*'
|
6
|
+
- 'node_modules/**/*'
|
7
|
+
- 'spec/fixtures/**'
|
8
|
+
|
9
|
+
Metrics/MethodLength:
|
10
|
+
Enabled: false
|
11
|
+
|
12
|
+
Metrics/AbcSize:
|
13
|
+
Enabled: false
|
14
|
+
|
15
|
+
Style/Documentation:
|
16
|
+
Enabled: false
|
17
|
+
|
18
|
+
Style/FrozenStringLiteralComment:
|
19
|
+
Enabled: false
|
20
|
+
|
21
|
+
Style/NumericLiterals:
|
22
|
+
Enabled: false
|
23
|
+
|
24
|
+
Style/ClassAndModuleChildren:
|
25
|
+
Enabled: false
|
26
|
+
Lint/AssignmentInCondition:
|
27
|
+
Enabled: false
|
28
|
+
Style/MultilineBlockChain:
|
29
|
+
Enabled: false
|
30
|
+
Style/StringLiterals:
|
31
|
+
EnforcedStyle: double_quotes
|
32
|
+
Layout/MultilineAssignmentLayout:
|
33
|
+
EnforcedStyle: new_line
|
34
|
+
Style/GuardClause:
|
35
|
+
Enabled: false
|
36
|
+
Style/AsciiComments:
|
37
|
+
Enabled: false
|
38
|
+
Style/ConditionalAssignment:
|
39
|
+
EnforcedStyle: assign_inside_condition
|
40
|
+
Lint/AmbiguousBlockAssociation:
|
41
|
+
Enabled: false
|
42
|
+
Style/Semicolon:
|
43
|
+
Enabled: false
|
44
|
+
Style/StructInheritance:
|
45
|
+
Enabled: false
|
46
|
+
Style/IfUnlessModifier:
|
47
|
+
Enabled: false
|
48
|
+
Layout/LineLength:
|
49
|
+
Enabled: false
|
50
|
+
Style/SymbolArray:
|
51
|
+
EnforcedStyle: brackets
|
52
|
+
|
53
|
+
Style/RedundantReturn:
|
54
|
+
Enabled: false
|
55
|
+
Style/EmptyLiteral:
|
56
|
+
Enabled: false
|
57
|
+
|
58
|
+
# TODOs
|
59
|
+
Metrics/BlockLength:
|
60
|
+
Enabled: false
|
61
|
+
Metrics/ClassLength:
|
62
|
+
Enabled: false
|
63
|
+
Style/MixinUsage:
|
64
|
+
Enabled: false
|
65
|
+
Naming/AccessorMethodName:
|
66
|
+
Enabled: false
|
67
|
+
Security/Eval:
|
68
|
+
Enabled: false
|
69
|
+
Style/OptionalArguments:
|
70
|
+
Enabled: false
|
71
|
+
Metrics/PerceivedComplexity:
|
72
|
+
Enabled: false
|
73
|
+
Metrics/ParameterLists:
|
74
|
+
Enabled: false
|
75
|
+
Metrics/CyclomaticComplexity:
|
76
|
+
Enabled: false
|
77
|
+
Style/FormatStringToken:
|
78
|
+
Enabled: false
|
79
|
+
Style/StderrPuts:
|
80
|
+
Enabled: false
|
81
|
+
|
82
|
+
|
83
|
+
Layout/ParameterAlignment:
|
84
|
+
EnforcedStyle: with_fixed_indentation
|
85
|
+
Layout/HashAlignment:
|
86
|
+
Enabled: false
|
87
|
+
EnforcedColonStyle: key
|
data/.travis.yml
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
language: ruby
|
2
|
+
rvm:
|
3
|
+
- 2.5.0
|
4
|
+
- 2.6.2
|
5
|
+
- 2.7.1
|
6
|
+
os:
|
7
|
+
- osx
|
8
|
+
- linux
|
9
|
+
gemfile:
|
10
|
+
- ci/Gemfile.rubocop-0.80
|
11
|
+
- ci/Gemfile.rubocop-0.81
|
12
|
+
- ci/Gemfile.rubocop-0.82
|
13
|
+
- ci/Gemfile.rubocop-0.83
|
14
|
+
- ci/Gemfile.rubocop-0.84
|
15
|
+
- ci/Gemfile.rubocop-0.85
|
16
|
+
- ci/Gemfile.rubocop-0.85.1
|
17
|
+
before_install:
|
18
|
+
- yes | gem update --system --force
|
19
|
+
install:
|
20
|
+
- bundle install
|
21
|
+
- gem install colorize
|
22
|
+
- gem install rake
|
23
|
+
- rake travis:setup
|
24
|
+
script:
|
25
|
+
- bundle exec rake travis:spec
|
26
|
+
- bundle exec rake travis:verify
|
27
|
+
jobs:
|
28
|
+
include:
|
29
|
+
deploy:
|
30
|
+
provider: rubygems
|
31
|
+
api_key:
|
32
|
+
secure: SJ5rZtQxDnY7aeWIb+gZ1OEV2rDHz8jvMBStHtzPDVtpQeUoo6DJB4FN4Vt5i7VaVk1otkAdOgyANzOQDSB0/1mMBUcy902zKrrUISALeIXp2FpsvjijRdKD0hLJaeX00n/MEJpw671NbzCNboEdiMnCrxSgd775qeQibcv72iRGIY07xv/BLUCtLTmqtjQFQAvcYEFpMQsRE6XEnkRSEOigSsYvNKZrygG4AgUaNY4rcOPqP+Yl26BFHw833GBQeuGgD5a310k3xYwpPc+9I+pTVHcpc4qh2m9kPcNuyDE3OjAMqE3XVn9WXeciZnQR6AQ94n6+5CJyTD3NEv5n58i4kyCLB71YfmPJjO+04+EiCUSZjeECkwACNguzOisdV8Z/vDzfNhI5tvNL7lv3jU05F/lw8LXKR30GBte5BquPY4DjjjXKgKoKl0tbo1bBT0u8LItEaFYoGqRmUiXiHFQNaH02pjBFkjUsyyEgnscWTDtoPxEjyP4aLnW+ESxnJxpwMHHiHPmplrPmK+3hYrTYz9saZyIajLIfcxcGcSSWEHXt2gV5i80pHJFQCc1qV/9d3g8s8sy3N9eKzV6SMYspFTtdKe2Pf7m/nwFt235/ibx0Z4Gyb1TZKze7phv9yAzvAaIb28I3Ye6S2S/ALemlKiu1A/XWtNtOxo8xMNE=
|
33
|
+
gem: rfix
|
34
|
+
on:
|
35
|
+
repo: oleander/rfix-rb
|
36
|
+
tags: false
|
37
|
+
cleanup: 'false'
|
data/Gemfile
ADDED
data/Gemfile.base
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
source "https://rubygems.org"
|
2
|
+
|
3
|
+
|
4
|
+
group :development do
|
5
|
+
gem "pry"
|
6
|
+
gem "colorize"
|
7
|
+
gem "faker"
|
8
|
+
gem "gem-release", require: false
|
9
|
+
gem "guard", require: false
|
10
|
+
gem "guard-rspec", require: false
|
11
|
+
gem "jsonpath"
|
12
|
+
end
|
13
|
+
|
14
|
+
gemspec path: __dir__
|
data/Gemfile.base.lock
ADDED
@@ -0,0 +1,172 @@
|
|
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.1)
|
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, < 1.4)
|
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.1)
|
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.2.0)
|
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
|
+
listen (3.2.1)
|
88
|
+
rb-fsevent (~> 0.10, >= 0.10.3)
|
89
|
+
rb-inotify (~> 0.9, >= 0.9.10)
|
90
|
+
lumberjack (1.2.6)
|
91
|
+
method_source (1.0.0)
|
92
|
+
middleware (0.1.0)
|
93
|
+
minitest (5.14.1)
|
94
|
+
multi_test (0.1.2)
|
95
|
+
nenv (0.3.0)
|
96
|
+
notiffany (0.1.3)
|
97
|
+
nenv (~> 0.1)
|
98
|
+
shellany (~> 0.0)
|
99
|
+
parallel (1.19.2)
|
100
|
+
parser (2.7.1.4)
|
101
|
+
ast (~> 2.4.1)
|
102
|
+
protobuf-cucumber (3.10.8)
|
103
|
+
activesupport (>= 3.2)
|
104
|
+
middleware
|
105
|
+
thor
|
106
|
+
thread_safe
|
107
|
+
pry (0.13.1)
|
108
|
+
coderay (~> 1.1)
|
109
|
+
method_source (~> 1.0)
|
110
|
+
rainbow (3.0.0)
|
111
|
+
rake (12.3.3)
|
112
|
+
rb-fsevent (0.10.4)
|
113
|
+
rb-inotify (0.10.1)
|
114
|
+
ffi (~> 1.0)
|
115
|
+
rchardet (1.8.0)
|
116
|
+
regexp_parser (1.7.1)
|
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.86.0)
|
133
|
+
parallel (~> 1.10)
|
134
|
+
parser (>= 2.7.0.1)
|
135
|
+
rainbow (>= 2.2.2, < 4.0)
|
136
|
+
regexp_parser (>= 1.7)
|
137
|
+
rexml
|
138
|
+
rubocop-ast (>= 0.0.3, < 1.0)
|
139
|
+
ruby-progressbar (~> 1.7)
|
140
|
+
unicode-display_width (>= 1.4.0, < 2.0)
|
141
|
+
rubocop-ast (0.1.0)
|
142
|
+
parser (>= 2.7.0.1)
|
143
|
+
ruby-progressbar (1.10.1)
|
144
|
+
rugged (1.0.1)
|
145
|
+
shellany (0.0.1)
|
146
|
+
sys-uname (1.2.1)
|
147
|
+
ffi (>= 1.0.0)
|
148
|
+
thor (1.0.1)
|
149
|
+
thread_safe (0.3.6)
|
150
|
+
tzinfo (1.2.7)
|
151
|
+
thread_safe (~> 0.1)
|
152
|
+
unicode-display_width (1.7.0)
|
153
|
+
zeitwerk (2.3.0)
|
154
|
+
|
155
|
+
PLATFORMS
|
156
|
+
ruby
|
157
|
+
|
158
|
+
DEPENDENCIES
|
159
|
+
aruba (~> 1.0)
|
160
|
+
colorize
|
161
|
+
faker
|
162
|
+
gem-release
|
163
|
+
git (~> 1.7.0)
|
164
|
+
guard
|
165
|
+
guard-rspec
|
166
|
+
pry
|
167
|
+
rake (~> 12.3)
|
168
|
+
rfix!
|
169
|
+
rspec (~> 3.0)
|
170
|
+
|
171
|
+
BUNDLED WITH
|
172
|
+
2.1.4
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,181 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
rfix (1.2.2)
|
5
|
+
cri (~> 2.15.10)
|
6
|
+
listen (~> 3.0)
|
7
|
+
rainbow (~> 3.0)
|
8
|
+
require_all (~> 3.0.0)
|
9
|
+
rouge (~> 3.20)
|
10
|
+
rubocop (>= 0.80)
|
11
|
+
rugged (~> 1.0.0)
|
12
|
+
|
13
|
+
GEM
|
14
|
+
remote: https://rubygems.org/
|
15
|
+
specs:
|
16
|
+
activesupport (6.0.3.2)
|
17
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
18
|
+
i18n (>= 0.7, < 2)
|
19
|
+
minitest (~> 5.1)
|
20
|
+
tzinfo (~> 1.1)
|
21
|
+
zeitwerk (~> 2.2, >= 2.2.2)
|
22
|
+
aruba (1.0.2)
|
23
|
+
childprocess (>= 2.0, < 5.0)
|
24
|
+
contracts (~> 0.16.0)
|
25
|
+
cucumber (>= 2.4, < 5.0)
|
26
|
+
ffi (~> 1.9)
|
27
|
+
rspec-expectations (~> 3.4)
|
28
|
+
thor (~> 1.0)
|
29
|
+
ast (2.4.1)
|
30
|
+
builder (3.2.4)
|
31
|
+
childprocess (4.0.0)
|
32
|
+
coderay (1.1.3)
|
33
|
+
colorize (0.8.1)
|
34
|
+
concurrent-ruby (1.1.6)
|
35
|
+
contracts (0.16.0)
|
36
|
+
cri (2.15.10)
|
37
|
+
cucumber (4.0.1)
|
38
|
+
builder (~> 3.2, >= 3.2.3)
|
39
|
+
cucumber-core (~> 7.0, >= 7.0.0)
|
40
|
+
cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
|
41
|
+
cucumber-gherkin (~> 13.0, >= 13.0.0)
|
42
|
+
cucumber-html-formatter (~> 6.0, >= 6.0.1)
|
43
|
+
cucumber-messages (~> 12.1, >= 12.1.1)
|
44
|
+
cucumber-wire (~> 3.0, >= 3.0.0)
|
45
|
+
diff-lcs (~> 1.3, >= 1.3, < 1.4)
|
46
|
+
multi_test (~> 0.1, >= 0.1.2)
|
47
|
+
sys-uname (~> 1.0, >= 1.0.2)
|
48
|
+
cucumber-core (7.0.0)
|
49
|
+
cucumber-gherkin (~> 13.0, >= 13.0.0)
|
50
|
+
cucumber-messages (~> 12.1, >= 12.1.1)
|
51
|
+
cucumber-tag-expressions (~> 2.0, >= 2.0.4)
|
52
|
+
cucumber-cucumber-expressions (10.2.1)
|
53
|
+
cucumber-gherkin (13.0.0)
|
54
|
+
cucumber-messages (~> 12.0, >= 12.0.0)
|
55
|
+
cucumber-html-formatter (6.0.3)
|
56
|
+
cucumber-messages (~> 12.1, >= 12.1.1)
|
57
|
+
cucumber-messages (12.1.1)
|
58
|
+
protobuf-cucumber (~> 3.10, >= 3.10.8)
|
59
|
+
cucumber-tag-expressions (2.0.4)
|
60
|
+
cucumber-wire (3.0.0)
|
61
|
+
cucumber-core (~> 7.0, >= 7.0.0)
|
62
|
+
cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
|
63
|
+
cucumber-messages (~> 12.1, >= 12.1.1)
|
64
|
+
diff-lcs (1.3)
|
65
|
+
faker (2.13.0)
|
66
|
+
i18n (>= 1.6, < 2)
|
67
|
+
ffi (1.13.1)
|
68
|
+
formatador (0.2.5)
|
69
|
+
gem-release (2.1.1)
|
70
|
+
git (1.7.0)
|
71
|
+
rchardet (~> 1.8)
|
72
|
+
guard (2.16.2)
|
73
|
+
formatador (>= 0.2.4)
|
74
|
+
listen (>= 2.7, < 4.0)
|
75
|
+
lumberjack (>= 1.0.12, < 2.0)
|
76
|
+
nenv (~> 0.1)
|
77
|
+
notiffany (~> 0.0)
|
78
|
+
pry (>= 0.9.12)
|
79
|
+
shellany (~> 0.0)
|
80
|
+
thor (>= 0.18.1)
|
81
|
+
guard-compat (1.2.1)
|
82
|
+
guard-rspec (4.7.3)
|
83
|
+
guard (~> 2.1)
|
84
|
+
guard-compat (~> 1.1)
|
85
|
+
rspec (>= 2.99.0, < 4.0)
|
86
|
+
i18n (1.8.3)
|
87
|
+
concurrent-ruby (~> 1.0)
|
88
|
+
jsonpath (1.0.5)
|
89
|
+
multi_json
|
90
|
+
to_regexp (~> 0.2.1)
|
91
|
+
listen (3.2.1)
|
92
|
+
rb-fsevent (~> 0.10, >= 0.10.3)
|
93
|
+
rb-inotify (~> 0.9, >= 0.9.10)
|
94
|
+
lumberjack (1.2.6)
|
95
|
+
method_source (1.0.0)
|
96
|
+
middleware (0.1.0)
|
97
|
+
minitest (5.14.1)
|
98
|
+
multi_json (1.14.1)
|
99
|
+
multi_test (0.1.2)
|
100
|
+
nenv (0.3.0)
|
101
|
+
notiffany (0.1.3)
|
102
|
+
nenv (~> 0.1)
|
103
|
+
shellany (~> 0.0)
|
104
|
+
parallel (1.19.2)
|
105
|
+
parser (2.7.1.4)
|
106
|
+
ast (~> 2.4.1)
|
107
|
+
protobuf-cucumber (3.10.8)
|
108
|
+
activesupport (>= 3.2)
|
109
|
+
middleware
|
110
|
+
thor
|
111
|
+
thread_safe
|
112
|
+
pry (0.13.1)
|
113
|
+
coderay (~> 1.1)
|
114
|
+
method_source (~> 1.0)
|
115
|
+
rainbow (3.0.0)
|
116
|
+
rake (12.3.3)
|
117
|
+
rb-fsevent (0.10.4)
|
118
|
+
rb-inotify (0.10.1)
|
119
|
+
ffi (~> 1.0)
|
120
|
+
rchardet (1.8.0)
|
121
|
+
regexp_parser (1.7.1)
|
122
|
+
require_all (3.0.0)
|
123
|
+
rexml (3.2.4)
|
124
|
+
rouge (3.21.0)
|
125
|
+
rspec (3.9.0)
|
126
|
+
rspec-core (~> 3.9.0)
|
127
|
+
rspec-expectations (~> 3.9.0)
|
128
|
+
rspec-mocks (~> 3.9.0)
|
129
|
+
rspec-core (3.9.2)
|
130
|
+
rspec-support (~> 3.9.3)
|
131
|
+
rspec-expectations (3.9.2)
|
132
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
133
|
+
rspec-support (~> 3.9.0)
|
134
|
+
rspec-mocks (3.9.1)
|
135
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
136
|
+
rspec-support (~> 3.9.0)
|
137
|
+
rspec-support (3.9.3)
|
138
|
+
rubocop (0.86.0)
|
139
|
+
parallel (~> 1.10)
|
140
|
+
parser (>= 2.7.0.1)
|
141
|
+
rainbow (>= 2.2.2, < 4.0)
|
142
|
+
regexp_parser (>= 1.7)
|
143
|
+
rexml
|
144
|
+
rubocop-ast (>= 0.0.3, < 1.0)
|
145
|
+
ruby-progressbar (~> 1.7)
|
146
|
+
unicode-display_width (>= 1.4.0, < 2.0)
|
147
|
+
rubocop-ast (0.0.3)
|
148
|
+
parser (>= 2.7.0.1)
|
149
|
+
ruby-progressbar (1.10.1)
|
150
|
+
rugged (1.0.1)
|
151
|
+
shellany (0.0.1)
|
152
|
+
sys-uname (1.2.1)
|
153
|
+
ffi (>= 1.0.0)
|
154
|
+
thor (1.0.1)
|
155
|
+
thread_safe (0.3.6)
|
156
|
+
to_regexp (0.2.1)
|
157
|
+
tzinfo (1.2.7)
|
158
|
+
thread_safe (~> 0.1)
|
159
|
+
unicode-display_width (1.7.0)
|
160
|
+
zeitwerk (2.3.0)
|
161
|
+
|
162
|
+
PLATFORMS
|
163
|
+
ruby
|
164
|
+
|
165
|
+
DEPENDENCIES
|
166
|
+
aruba (~> 1.0)
|
167
|
+
colorize
|
168
|
+
faker
|
169
|
+
gem-release
|
170
|
+
git (~> 1.7.0)
|
171
|
+
guard
|
172
|
+
guard-rspec
|
173
|
+
jsonpath
|
174
|
+
pry
|
175
|
+
rake (~> 12.3)
|
176
|
+
rfix!
|
177
|
+
rspec (~> 3.0)
|
178
|
+
rubocop (~> 0.85)
|
179
|
+
|
180
|
+
BUNDLED WITH
|
181
|
+
2.1.4
|