g2_command 2.2.0 → 3.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.
- checksums.yaml +4 -4
- data/.circleci/config.yml +14 -68
- data/.rubocop.yml +2 -1
- data/.ruby-version +1 -1
- data/.tool-versions +1 -1
- data/Appraisals +10 -6
- data/Gemfile.lock +118 -111
- data/g2_command.gemspec +1 -1
- data/gemfiles/rails_5.1.gemfile +1 -1
- data/gemfiles/rails_5.1.gemfile.lock +24 -24
- data/gemfiles/rails_5.2.gemfile +1 -1
- data/gemfiles/rails_5.2.gemfile.lock +64 -66
- data/gemfiles/rails_6.0.gemfile +1 -1
- data/gemfiles/rails_6.0.gemfile.lock +78 -80
- data/gemfiles/rails_6.1.gemfile +15 -0
- data/gemfiles/rails_6.1.gemfile.lock +225 -0
- data/lib/command/version.rb +1 -1
- data/lib/command.rb +3 -1
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f6d6770cc83fed0548f0e18e529e6d92b8caf628ba436bd507da56da9d7b1cdd
|
4
|
+
data.tar.gz: 55692980812dd3b2bf1322c26763889b65422f7653ba388072ec597881ce2d1f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3765b0e0dcbf023ae8174e931c538513fe6b1593d9473ea5b6261e9c2c35203beae543c0df3bf36433a54218f0d2ceb4135a8946841a803e3c5eab9682ce1ba
|
7
|
+
data.tar.gz: bf992b124f2be7789e810cc36fa5bcaa8b591c1cec35f2a350dd5b4e6b21f54525a1e8dc089938608cd246f57f28759c44e0a9939f394a35b9d192a0669b9871
|
data/.circleci/config.yml
CHANGED
@@ -1,83 +1,29 @@
|
|
1
1
|
version: 2.1
|
2
2
|
|
3
3
|
orbs:
|
4
|
-
ruby: g2crowd/ruby@0.0.
|
5
|
-
|
6
|
-
commands:
|
7
|
-
load-cache:
|
8
|
-
description: 'Load cached RubyGems.'
|
9
|
-
parameters:
|
10
|
-
key:
|
11
|
-
description: 'The cache key to use. The key is immutable.'
|
12
|
-
type: string
|
13
|
-
default: 'gems-v1'
|
14
|
-
gemfile:
|
15
|
-
description: 'The gemfile to use'
|
16
|
-
type: string
|
17
|
-
default: 'Gemfile.lock'
|
18
|
-
steps:
|
19
|
-
- restore_cache:
|
20
|
-
keys:
|
21
|
-
- << parameters.key >>-{{ checksum "<< parameters.gemfile >>" }}
|
22
|
-
- << parameters.key >>-
|
23
|
-
save-cache:
|
24
|
-
description: "Save RubyGems to cache."
|
25
|
-
parameters:
|
26
|
-
key:
|
27
|
-
description: "The cache key to use. The key is immutable."
|
28
|
-
type: string
|
29
|
-
default: "gems-v1"
|
30
|
-
gemfile:
|
31
|
-
description: 'The gemfile to use'
|
32
|
-
type: string
|
33
|
-
default: 'Gemfile.lock'
|
34
|
-
steps:
|
35
|
-
- save_cache:
|
36
|
-
key: << parameters.key >>-{{ checksum "<< parameters.gemfile >>" }}
|
37
|
-
paths:
|
38
|
-
- vendor/bundle
|
39
|
-
|
40
|
-
jobs:
|
41
|
-
appraisal:
|
42
|
-
parameters:
|
43
|
-
ruby:
|
44
|
-
description: 'The ruby version to use'
|
45
|
-
type: string
|
46
|
-
default: '2.7.1'
|
47
|
-
gemfile:
|
48
|
-
description: 'The gemfile version to use'
|
49
|
-
type: string
|
50
|
-
default: '6.0'
|
51
|
-
executor:
|
52
|
-
name: ruby/ruby
|
53
|
-
ruby: << parameters.ruby >>
|
54
|
-
environment:
|
55
|
-
BUNDLE_GEMFILE: gemfiles/rails_<< parameters.gemfile >>.gemfile
|
56
|
-
steps:
|
57
|
-
- checkout
|
58
|
-
- load-cache:
|
59
|
-
gemfile: gemfiles/rails_<< parameters.gemfile >>.gemfile
|
60
|
-
- ruby/install-deps:
|
61
|
-
bundler-version: '2.1.4'
|
62
|
-
- save-cache:
|
63
|
-
gemfile: gemfiles/rails_<< parameters.gemfile >>.gemfile
|
64
|
-
- run:
|
65
|
-
name: Run Specs
|
66
|
-
command: bundle exec appraisal rails-<< parameters.gemfile >> rspec --require fivemat --format Fivemat
|
4
|
+
ruby: g2crowd/ruby@0.0.13
|
67
5
|
|
68
6
|
workflows:
|
69
7
|
version: 2
|
70
8
|
build:
|
71
9
|
jobs:
|
72
|
-
- appraisal:
|
10
|
+
- ruby/appraisal:
|
73
11
|
context: g2crowd-global
|
74
12
|
matrix:
|
75
13
|
parameters:
|
76
|
-
ruby: ['2.
|
77
|
-
|
14
|
+
ruby: ['2.6.8', '2.7.4', '3.0.2']
|
15
|
+
appraisal:
|
16
|
+
- rails_5.1
|
17
|
+
- rails_5.2
|
18
|
+
- rails_6.0
|
19
|
+
- rails_6.1
|
78
20
|
exclude:
|
79
|
-
- ruby: '
|
80
|
-
|
21
|
+
- ruby: '3.0.2'
|
22
|
+
appraisal: rails_5.1
|
23
|
+
- ruby: '3.0.2'
|
24
|
+
appraisal: rails_5.2
|
25
|
+
- ruby: '3.0.2'
|
26
|
+
appraisal: rails_6.0
|
81
27
|
- ruby/build:
|
82
28
|
context: g2crowd-global
|
83
29
|
setup-database: false
|
data/.rubocop.yml
CHANGED
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.7.
|
1
|
+
2.7.2
|
data/.tool-versions
CHANGED
@@ -1 +1 @@
|
|
1
|
-
ruby
|
1
|
+
ruby 3.0.0
|
data/Appraisals
CHANGED
@@ -1,13 +1,17 @@
|
|
1
|
-
appraise '
|
2
|
-
gem 'rails', '5.1.
|
1
|
+
appraise 'rails_5.1' do
|
2
|
+
gem 'rails', '~> 5.1', '< 5.2'
|
3
3
|
gem 'sprockets', '~> 3'
|
4
4
|
end
|
5
5
|
|
6
|
-
appraise '
|
7
|
-
gem 'rails', '5.2
|
6
|
+
appraise 'rails_5.2' do
|
7
|
+
gem 'rails', '~> 5.2'
|
8
8
|
gem 'sprockets', '~> 3'
|
9
9
|
end
|
10
10
|
|
11
|
-
appraise '
|
12
|
-
gem 'rails', '6.0.3'
|
11
|
+
appraise 'rails_6.0' do
|
12
|
+
gem 'rails', '~> 6.0.3'
|
13
|
+
end
|
14
|
+
|
15
|
+
appraise 'rails_6.1' do
|
16
|
+
gem 'rails', '~> 6.1.0'
|
13
17
|
end
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
g2_command (
|
4
|
+
g2_command (3.0.0)
|
5
5
|
activemodel (>= 5.0, < 7)
|
6
6
|
activesupport (>= 5.0, < 7)
|
7
7
|
dry-initializer (~> 3.0)
|
@@ -10,61 +10,65 @@ PATH
|
|
10
10
|
GEM
|
11
11
|
remote: https://rubygems.org/
|
12
12
|
specs:
|
13
|
-
actioncable (6.
|
14
|
-
actionpack (= 6.
|
13
|
+
actioncable (6.1.4.1)
|
14
|
+
actionpack (= 6.1.4.1)
|
15
|
+
activesupport (= 6.1.4.1)
|
15
16
|
nio4r (~> 2.0)
|
16
17
|
websocket-driver (>= 0.6.1)
|
17
|
-
actionmailbox (6.
|
18
|
-
actionpack (= 6.
|
19
|
-
activejob (= 6.
|
20
|
-
activerecord (= 6.
|
21
|
-
activestorage (= 6.
|
22
|
-
activesupport (= 6.
|
18
|
+
actionmailbox (6.1.4.1)
|
19
|
+
actionpack (= 6.1.4.1)
|
20
|
+
activejob (= 6.1.4.1)
|
21
|
+
activerecord (= 6.1.4.1)
|
22
|
+
activestorage (= 6.1.4.1)
|
23
|
+
activesupport (= 6.1.4.1)
|
23
24
|
mail (>= 2.7.1)
|
24
|
-
actionmailer (6.
|
25
|
-
actionpack (= 6.
|
26
|
-
actionview (= 6.
|
27
|
-
activejob (= 6.
|
25
|
+
actionmailer (6.1.4.1)
|
26
|
+
actionpack (= 6.1.4.1)
|
27
|
+
actionview (= 6.1.4.1)
|
28
|
+
activejob (= 6.1.4.1)
|
29
|
+
activesupport (= 6.1.4.1)
|
28
30
|
mail (~> 2.5, >= 2.5.4)
|
29
31
|
rails-dom-testing (~> 2.0)
|
30
|
-
actionpack (6.
|
31
|
-
actionview (= 6.
|
32
|
-
activesupport (= 6.
|
33
|
-
rack (~> 2.0, >= 2.0.
|
32
|
+
actionpack (6.1.4.1)
|
33
|
+
actionview (= 6.1.4.1)
|
34
|
+
activesupport (= 6.1.4.1)
|
35
|
+
rack (~> 2.0, >= 2.0.9)
|
34
36
|
rack-test (>= 0.6.3)
|
35
37
|
rails-dom-testing (~> 2.0)
|
36
38
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
37
|
-
actiontext (6.
|
38
|
-
actionpack (= 6.
|
39
|
-
activerecord (= 6.
|
40
|
-
activestorage (= 6.
|
41
|
-
activesupport (= 6.
|
39
|
+
actiontext (6.1.4.1)
|
40
|
+
actionpack (= 6.1.4.1)
|
41
|
+
activerecord (= 6.1.4.1)
|
42
|
+
activestorage (= 6.1.4.1)
|
43
|
+
activesupport (= 6.1.4.1)
|
42
44
|
nokogiri (>= 1.8.5)
|
43
|
-
actionview (6.
|
44
|
-
activesupport (= 6.
|
45
|
+
actionview (6.1.4.1)
|
46
|
+
activesupport (= 6.1.4.1)
|
45
47
|
builder (~> 3.1)
|
46
48
|
erubi (~> 1.4)
|
47
49
|
rails-dom-testing (~> 2.0)
|
48
50
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
49
|
-
activejob (6.
|
50
|
-
activesupport (= 6.
|
51
|
+
activejob (6.1.4.1)
|
52
|
+
activesupport (= 6.1.4.1)
|
51
53
|
globalid (>= 0.3.6)
|
52
|
-
activemodel (6.
|
53
|
-
activesupport (= 6.
|
54
|
-
activerecord (6.
|
55
|
-
activemodel (= 6.
|
56
|
-
activesupport (= 6.
|
57
|
-
activestorage (6.
|
58
|
-
actionpack (= 6.
|
59
|
-
activejob (= 6.
|
60
|
-
activerecord (= 6.
|
61
|
-
|
62
|
-
|
54
|
+
activemodel (6.1.4.1)
|
55
|
+
activesupport (= 6.1.4.1)
|
56
|
+
activerecord (6.1.4.1)
|
57
|
+
activemodel (= 6.1.4.1)
|
58
|
+
activesupport (= 6.1.4.1)
|
59
|
+
activestorage (6.1.4.1)
|
60
|
+
actionpack (= 6.1.4.1)
|
61
|
+
activejob (= 6.1.4.1)
|
62
|
+
activerecord (= 6.1.4.1)
|
63
|
+
activesupport (= 6.1.4.1)
|
64
|
+
marcel (~> 1.0.0)
|
65
|
+
mini_mime (>= 1.1.0)
|
66
|
+
activesupport (6.1.4.1)
|
63
67
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
64
|
-
i18n (>=
|
65
|
-
minitest (
|
66
|
-
tzinfo (~>
|
67
|
-
zeitwerk (~> 2.
|
68
|
+
i18n (>= 1.6, < 2)
|
69
|
+
minitest (>= 5.1)
|
70
|
+
tzinfo (~> 2.0)
|
71
|
+
zeitwerk (~> 2.3)
|
68
72
|
appraisal (2.3.0)
|
69
73
|
bundler
|
70
74
|
rake
|
@@ -72,11 +76,11 @@ GEM
|
|
72
76
|
ast (2.4.1)
|
73
77
|
builder (3.2.4)
|
74
78
|
coderay (1.1.2)
|
75
|
-
concurrent-ruby (1.1.
|
79
|
+
concurrent-ruby (1.1.9)
|
76
80
|
crass (1.0.6)
|
77
|
-
diff-lcs (1.
|
81
|
+
diff-lcs (1.4.4)
|
78
82
|
docile (1.3.2)
|
79
|
-
dry-core (0.
|
83
|
+
dry-core (0.5.0)
|
80
84
|
concurrent-ruby (~> 1.0)
|
81
85
|
dry-equalizer (0.3.0)
|
82
86
|
dry-initializer (3.0.4)
|
@@ -84,100 +88,104 @@ GEM
|
|
84
88
|
concurrent-ruby (~> 1.0)
|
85
89
|
dry-core (~> 0.4, >= 0.4.4)
|
86
90
|
dry-equalizer
|
87
|
-
erubi (1.
|
91
|
+
erubi (1.10.0)
|
88
92
|
fivemat (1.3.7)
|
89
|
-
globalid (0.
|
90
|
-
activesupport (>=
|
91
|
-
i18n (1.8.
|
93
|
+
globalid (0.5.2)
|
94
|
+
activesupport (>= 5.0)
|
95
|
+
i18n (1.8.10)
|
92
96
|
concurrent-ruby (~> 1.0)
|
93
|
-
jaro_winkler (1.5.4)
|
94
97
|
json (2.3.0)
|
95
|
-
loofah (2.
|
98
|
+
loofah (2.12.0)
|
96
99
|
crass (~> 1.0.2)
|
97
100
|
nokogiri (>= 1.5.9)
|
98
101
|
mail (2.7.1)
|
99
102
|
mini_mime (>= 0.1.1)
|
100
|
-
marcel (0.
|
101
|
-
mimemagic (~> 0.3.2)
|
103
|
+
marcel (1.0.2)
|
102
104
|
method_source (0.9.2)
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
105
|
+
mini_mime (1.1.1)
|
106
|
+
mini_portile2 (2.6.1)
|
107
|
+
minitest (5.14.4)
|
108
|
+
nio4r (2.5.8)
|
109
|
+
nokogiri (1.12.4)
|
110
|
+
mini_portile2 (~> 2.6.1)
|
111
|
+
racc (~> 1.4)
|
110
112
|
parallel (1.19.2)
|
111
|
-
parser (2.7.
|
113
|
+
parser (2.7.2.0)
|
112
114
|
ast (~> 2.4.1)
|
113
115
|
pry (0.12.2)
|
114
116
|
coderay (~> 1.1.0)
|
115
117
|
method_source (~> 0.9.0)
|
118
|
+
racc (1.5.2)
|
116
119
|
rack (2.2.3)
|
117
120
|
rack-test (1.1.0)
|
118
121
|
rack (>= 1.0, < 3)
|
119
|
-
rails (6.
|
120
|
-
actioncable (= 6.
|
121
|
-
actionmailbox (= 6.
|
122
|
-
actionmailer (= 6.
|
123
|
-
actionpack (= 6.
|
124
|
-
actiontext (= 6.
|
125
|
-
actionview (= 6.
|
126
|
-
activejob (= 6.
|
127
|
-
activemodel (= 6.
|
128
|
-
activerecord (= 6.
|
129
|
-
activestorage (= 6.
|
130
|
-
activesupport (= 6.
|
131
|
-
bundler (>= 1.
|
132
|
-
railties (= 6.
|
122
|
+
rails (6.1.4.1)
|
123
|
+
actioncable (= 6.1.4.1)
|
124
|
+
actionmailbox (= 6.1.4.1)
|
125
|
+
actionmailer (= 6.1.4.1)
|
126
|
+
actionpack (= 6.1.4.1)
|
127
|
+
actiontext (= 6.1.4.1)
|
128
|
+
actionview (= 6.1.4.1)
|
129
|
+
activejob (= 6.1.4.1)
|
130
|
+
activemodel (= 6.1.4.1)
|
131
|
+
activerecord (= 6.1.4.1)
|
132
|
+
activestorage (= 6.1.4.1)
|
133
|
+
activesupport (= 6.1.4.1)
|
134
|
+
bundler (>= 1.15.0)
|
135
|
+
railties (= 6.1.4.1)
|
133
136
|
sprockets-rails (>= 2.0.0)
|
134
137
|
rails-dom-testing (2.0.3)
|
135
138
|
activesupport (>= 4.2.0)
|
136
139
|
nokogiri (>= 1.6)
|
137
|
-
rails-html-sanitizer (1.
|
140
|
+
rails-html-sanitizer (1.4.2)
|
138
141
|
loofah (~> 2.3)
|
139
|
-
railties (6.
|
140
|
-
actionpack (= 6.
|
141
|
-
activesupport (= 6.
|
142
|
+
railties (6.1.4.1)
|
143
|
+
actionpack (= 6.1.4.1)
|
144
|
+
activesupport (= 6.1.4.1)
|
142
145
|
method_source
|
143
|
-
rake (>= 0.
|
144
|
-
thor (
|
146
|
+
rake (>= 0.13)
|
147
|
+
thor (~> 1.0)
|
145
148
|
rainbow (3.0.0)
|
146
149
|
rake (12.3.3)
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
rspec-
|
151
|
-
rspec-
|
152
|
-
|
153
|
-
|
154
|
-
|
150
|
+
regexp_parser (1.8.2)
|
151
|
+
rexml (3.2.5)
|
152
|
+
rspec (3.10.0)
|
153
|
+
rspec-core (~> 3.10.0)
|
154
|
+
rspec-expectations (~> 3.10.0)
|
155
|
+
rspec-mocks (~> 3.10.0)
|
156
|
+
rspec-core (3.10.1)
|
157
|
+
rspec-support (~> 3.10.0)
|
158
|
+
rspec-expectations (3.10.1)
|
155
159
|
diff-lcs (>= 1.2.0, < 2.0)
|
156
|
-
rspec-support (~> 3.
|
157
|
-
rspec-mocks (3.
|
160
|
+
rspec-support (~> 3.10.0)
|
161
|
+
rspec-mocks (3.10.2)
|
158
162
|
diff-lcs (>= 1.2.0, < 2.0)
|
159
|
-
rspec-support (~> 3.
|
160
|
-
rspec-support (3.
|
163
|
+
rspec-support (~> 3.10.0)
|
164
|
+
rspec-support (3.10.2)
|
161
165
|
rspec_junit_formatter (0.4.1)
|
162
166
|
rspec-core (>= 2, < 4, != 2.12.0)
|
163
|
-
rubocop (0.
|
164
|
-
jaro_winkler (~> 1.5.1)
|
167
|
+
rubocop (0.93.1)
|
165
168
|
parallel (~> 1.10)
|
166
|
-
parser (>= 2.7.
|
169
|
+
parser (>= 2.7.1.5)
|
167
170
|
rainbow (>= 2.2.2, < 4.0)
|
171
|
+
regexp_parser (>= 1.8)
|
168
172
|
rexml
|
173
|
+
rubocop-ast (>= 0.6.0)
|
169
174
|
ruby-progressbar (~> 1.7)
|
170
175
|
unicode-display_width (>= 1.4.0, < 2.0)
|
171
|
-
rubocop-
|
172
|
-
|
173
|
-
|
174
|
-
rubocop
|
175
|
-
|
176
|
-
|
176
|
+
rubocop-ast (1.1.0)
|
177
|
+
parser (>= 2.7.1.5)
|
178
|
+
rubocop-g2 (1.2.1)
|
179
|
+
rubocop (>= 0.82)
|
180
|
+
rubocop-rails (>= 2.5)
|
181
|
+
rubocop-rspec (>= 1.39)
|
182
|
+
rubocop-rails (2.8.1)
|
183
|
+
activesupport (>= 4.2.0)
|
177
184
|
rack (>= 1.1)
|
178
|
-
rubocop (>= 0.
|
179
|
-
rubocop-rspec (1.
|
180
|
-
rubocop (
|
185
|
+
rubocop (>= 0.87.0)
|
186
|
+
rubocop-rspec (1.44.1)
|
187
|
+
rubocop (~> 0.87)
|
188
|
+
rubocop-ast (>= 0.7.1)
|
181
189
|
ruby-progressbar (1.10.1)
|
182
190
|
simplecov (0.16.1)
|
183
191
|
docile (~> 1.1)
|
@@ -191,15 +199,14 @@ GEM
|
|
191
199
|
actionpack (>= 4.0)
|
192
200
|
activesupport (>= 4.0)
|
193
201
|
sprockets (>= 3.0.0)
|
194
|
-
thor (1.0
|
195
|
-
|
196
|
-
|
197
|
-
thread_safe (~> 0.1)
|
202
|
+
thor (1.1.0)
|
203
|
+
tzinfo (2.0.4)
|
204
|
+
concurrent-ruby (~> 1.0)
|
198
205
|
unicode-display_width (1.7.0)
|
199
|
-
websocket-driver (0.7.
|
206
|
+
websocket-driver (0.7.5)
|
200
207
|
websocket-extensions (>= 0.1.0)
|
201
208
|
websocket-extensions (0.1.5)
|
202
|
-
zeitwerk (2.4.
|
209
|
+
zeitwerk (2.4.2)
|
203
210
|
|
204
211
|
PLATFORMS
|
205
212
|
ruby
|
@@ -217,4 +224,4 @@ DEPENDENCIES
|
|
217
224
|
simplecov (= 0.16.1)
|
218
225
|
|
219
226
|
BUNDLED WITH
|
220
|
-
2.
|
227
|
+
2.2.3
|
data/g2_command.gemspec
CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
|
|
11
11
|
spec.summary = 'An implementation of the command pattern using dry-rb'
|
12
12
|
spec.homepage = 'https://github.com/g2crowd/g2_command'
|
13
13
|
spec.license = 'MIT'
|
14
|
-
spec.required_ruby_version = Gem::Requirement.new('>= 2.
|
14
|
+
spec.required_ruby_version = Gem::Requirement.new('>= 2.4.0')
|
15
15
|
|
16
16
|
spec.metadata['homepage_uri'] = spec.homepage
|
17
17
|
spec.metadata['source_code_uri'] = 'https://github.com/g2crowd/g2_command'
|
data/gemfiles/rails_5.1.gemfile
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
g2_command (
|
4
|
+
g2_command (3.0.0)
|
5
5
|
activemodel (>= 5.0, < 7)
|
6
6
|
activesupport (>= 5.0, < 7)
|
7
7
|
dry-initializer (~> 3.0)
|
@@ -55,43 +55,43 @@ GEM
|
|
55
55
|
ast (2.4.1)
|
56
56
|
builder (3.2.4)
|
57
57
|
coderay (1.1.3)
|
58
|
-
concurrent-ruby (1.1.
|
58
|
+
concurrent-ruby (1.1.9)
|
59
59
|
crass (1.0.6)
|
60
60
|
diff-lcs (1.4.4)
|
61
61
|
docile (1.3.2)
|
62
|
-
dry-core (0.
|
62
|
+
dry-core (0.7.1)
|
63
63
|
concurrent-ruby (~> 1.0)
|
64
|
-
dry-equalizer (0.3.0)
|
65
64
|
dry-initializer (3.0.4)
|
66
|
-
dry-monads (1.
|
65
|
+
dry-monads (1.4.0)
|
67
66
|
concurrent-ruby (~> 1.0)
|
68
|
-
dry-core (~> 0.
|
69
|
-
|
70
|
-
erubi (1.9.0)
|
67
|
+
dry-core (~> 0.7)
|
68
|
+
erubi (1.10.0)
|
71
69
|
fivemat (1.3.7)
|
72
|
-
globalid (0.
|
73
|
-
activesupport (>=
|
74
|
-
i18n (1.8.
|
70
|
+
globalid (0.5.2)
|
71
|
+
activesupport (>= 5.0)
|
72
|
+
i18n (1.8.10)
|
75
73
|
concurrent-ruby (~> 1.0)
|
76
74
|
json (2.3.1)
|
77
|
-
loofah (2.
|
75
|
+
loofah (2.12.0)
|
78
76
|
crass (~> 1.0.2)
|
79
77
|
nokogiri (>= 1.5.9)
|
80
78
|
mail (2.7.1)
|
81
79
|
mini_mime (>= 0.1.1)
|
82
80
|
method_source (1.0.0)
|
83
|
-
mini_mime (1.
|
84
|
-
mini_portile2 (2.
|
85
|
-
minitest (5.14.
|
86
|
-
nio4r (2.5.
|
87
|
-
nokogiri (1.
|
88
|
-
mini_portile2 (~> 2.
|
81
|
+
mini_mime (1.1.1)
|
82
|
+
mini_portile2 (2.6.1)
|
83
|
+
minitest (5.14.4)
|
84
|
+
nio4r (2.5.8)
|
85
|
+
nokogiri (1.12.4)
|
86
|
+
mini_portile2 (~> 2.6.1)
|
87
|
+
racc (~> 1.4)
|
89
88
|
parallel (1.19.2)
|
90
89
|
parser (2.7.2.0)
|
91
90
|
ast (~> 2.4.1)
|
92
91
|
pry (0.13.1)
|
93
92
|
coderay (~> 1.1)
|
94
93
|
method_source (~> 1.0)
|
94
|
+
racc (1.5.2)
|
95
95
|
rack (2.2.3)
|
96
96
|
rack-test (1.1.0)
|
97
97
|
rack (>= 1.0, < 3)
|
@@ -110,7 +110,7 @@ GEM
|
|
110
110
|
rails-dom-testing (2.0.3)
|
111
111
|
activesupport (>= 4.2.0)
|
112
112
|
nokogiri (>= 1.6)
|
113
|
-
rails-html-sanitizer (1.
|
113
|
+
rails-html-sanitizer (1.4.2)
|
114
114
|
loofah (~> 2.3)
|
115
115
|
railties (5.1.7)
|
116
116
|
actionpack (= 5.1.7)
|
@@ -121,7 +121,7 @@ GEM
|
|
121
121
|
rainbow (3.0.0)
|
122
122
|
rake (12.3.3)
|
123
123
|
regexp_parser (1.8.2)
|
124
|
-
rexml (3.2.
|
124
|
+
rexml (3.2.5)
|
125
125
|
rspec (3.9.0)
|
126
126
|
rspec-core (~> 3.9.0)
|
127
127
|
rspec-expectations (~> 3.9.0)
|
@@ -172,9 +172,9 @@ GEM
|
|
172
172
|
actionpack (>= 4.0)
|
173
173
|
activesupport (>= 4.0)
|
174
174
|
sprockets (>= 3.0.0)
|
175
|
-
thor (1.0
|
175
|
+
thor (1.1.0)
|
176
176
|
thread_safe (0.3.6)
|
177
|
-
tzinfo (1.2.
|
177
|
+
tzinfo (1.2.9)
|
178
178
|
thread_safe (~> 0.1)
|
179
179
|
unicode-display_width (1.7.0)
|
180
180
|
websocket-driver (0.6.5)
|
@@ -189,7 +189,7 @@ DEPENDENCIES
|
|
189
189
|
fivemat
|
190
190
|
g2_command!
|
191
191
|
pry
|
192
|
-
rails (
|
192
|
+
rails (~> 5.1, < 5.2)
|
193
193
|
rake (~> 12.0)
|
194
194
|
rspec (~> 3.0)
|
195
195
|
rspec_junit_formatter
|
@@ -198,4 +198,4 @@ DEPENDENCIES
|
|
198
198
|
sprockets (~> 3)
|
199
199
|
|
200
200
|
BUNDLED WITH
|
201
|
-
2.
|
201
|
+
2.2.3
|