g2_command 2.3.0 → 3.1.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 +7 -6
- data/.tool-versions +1 -1
- data/Appraisals +6 -8
- data/Gemfile.lock +105 -111
- data/g2_command.gemspec +2 -2
- data/gemfiles/rails_6.0.gemfile +1 -1
- data/gemfiles/rails_6.0.gemfile.lock +83 -85
- data/gemfiles/{rails_5.1.gemfile → rails_6.1.gemfile} +1 -2
- data/gemfiles/rails_6.1.gemfile.lock +225 -0
- data/gemfiles/{rails_5.2.gemfile → rails_7.0.gemfile} +1 -2
- data/gemfiles/rails_7.0.gemfile.lock +215 -0
- data/lib/command/input_middleware/symbolizer.rb +0 -2
- data/lib/command/version.rb +1 -1
- data/lib/command.rb +4 -2
- metadata +11 -12
- data/.ruby-version +0 -1
- data/gemfiles/rails_5.1.gemfile.lock +0 -201
- data/gemfiles/rails_5.2.gemfile.lock +0 -209
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 69fcd9970024b1ca3dec58e99712786fcef0de463f434d6fd75f624ab83b688f
|
4
|
+
data.tar.gz: 6c06eace0bdc054f9c6a1c77bf1b3d2eb7f4650e880777ce1e0b430054125266
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eb9264c4b7345310dde251893db754df066c32c18425dafdd5d64acca78e276af4494b24cf6a52fc12b19e4a119a820548fb04730f91a7417ca832818fbd8315
|
7
|
+
data.tar.gz: d0c5a39b55314b0db5379353ca88d20210a6fb907bf330d919399308516b14cccc523f0b0ef8ae0a991cc4b5229003cea53d56ba1fc6825e3fb2f48d130881e2
|
data/.circleci/config.yml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
version: 2.1
|
2
2
|
|
3
3
|
orbs:
|
4
|
-
ruby: g2crowd/ruby@0.0
|
4
|
+
ruby: g2crowd/ruby@0.1.0
|
5
5
|
|
6
6
|
workflows:
|
7
7
|
version: 2
|
@@ -11,15 +11,16 @@ workflows:
|
|
11
11
|
context: g2crowd-global
|
12
12
|
matrix:
|
13
13
|
parameters:
|
14
|
-
ruby: ['2.
|
14
|
+
ruby: ['2.7.5', '3.0.3']
|
15
15
|
appraisal:
|
16
|
-
- rails_5.1
|
17
|
-
- rails_5.2
|
18
16
|
- rails_6.0
|
17
|
+
- rails_6.1
|
18
|
+
- rails_7.0
|
19
19
|
exclude:
|
20
|
-
- ruby: '
|
20
|
+
- ruby: '3.0.3'
|
21
21
|
appraisal: rails_6.0
|
22
22
|
- ruby/build:
|
23
23
|
context: g2crowd-global
|
24
|
+
ruby: '3.0.3'
|
24
25
|
setup-database: false
|
25
|
-
bundler-version: '2.
|
26
|
+
bundler-version: '2.2.32'
|
data/.tool-versions
CHANGED
@@ -1 +1 @@
|
|
1
|
-
ruby
|
1
|
+
ruby 3.0.3
|
data/Appraisals
CHANGED
@@ -1,13 +1,11 @@
|
|
1
|
-
appraise '
|
2
|
-
gem 'rails', '
|
3
|
-
gem 'sprockets', '~> 3'
|
1
|
+
appraise 'rails_6.0' do
|
2
|
+
gem 'rails', '~> 6.0.3'
|
4
3
|
end
|
5
4
|
|
6
|
-
appraise '
|
7
|
-
gem 'rails', '
|
8
|
-
gem 'sprockets', '~> 3'
|
5
|
+
appraise 'rails_6.1' do
|
6
|
+
gem 'rails', '~> 6.1.0'
|
9
7
|
end
|
10
8
|
|
11
|
-
appraise '
|
12
|
-
gem 'rails', '
|
9
|
+
appraise 'rails_7.0' do
|
10
|
+
gem 'rails', '~> 7.0.0'
|
13
11
|
end
|
data/Gemfile.lock
CHANGED
@@ -1,163 +1,165 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
g2_command (
|
5
|
-
activemodel (>= 5.0, < 7)
|
6
|
-
activesupport (>= 5.0, < 7)
|
4
|
+
g2_command (3.1.0)
|
5
|
+
activemodel (>= 5.0, < 7.1)
|
6
|
+
activesupport (>= 5.0, < 7.1)
|
7
7
|
dry-initializer (~> 3.0)
|
8
8
|
dry-monads (~> 1.3)
|
9
9
|
|
10
10
|
GEM
|
11
11
|
remote: https://rubygems.org/
|
12
12
|
specs:
|
13
|
-
actioncable (
|
14
|
-
actionpack (=
|
13
|
+
actioncable (7.0.0)
|
14
|
+
actionpack (= 7.0.0)
|
15
|
+
activesupport (= 7.0.0)
|
15
16
|
nio4r (~> 2.0)
|
16
17
|
websocket-driver (>= 0.6.1)
|
17
|
-
actionmailbox (
|
18
|
-
actionpack (=
|
19
|
-
activejob (=
|
20
|
-
activerecord (=
|
21
|
-
activestorage (=
|
22
|
-
activesupport (=
|
18
|
+
actionmailbox (7.0.0)
|
19
|
+
actionpack (= 7.0.0)
|
20
|
+
activejob (= 7.0.0)
|
21
|
+
activerecord (= 7.0.0)
|
22
|
+
activestorage (= 7.0.0)
|
23
|
+
activesupport (= 7.0.0)
|
23
24
|
mail (>= 2.7.1)
|
24
|
-
actionmailer (
|
25
|
-
actionpack (=
|
26
|
-
actionview (=
|
27
|
-
activejob (=
|
25
|
+
actionmailer (7.0.0)
|
26
|
+
actionpack (= 7.0.0)
|
27
|
+
actionview (= 7.0.0)
|
28
|
+
activejob (= 7.0.0)
|
29
|
+
activesupport (= 7.0.0)
|
28
30
|
mail (~> 2.5, >= 2.5.4)
|
29
31
|
rails-dom-testing (~> 2.0)
|
30
|
-
actionpack (
|
31
|
-
actionview (=
|
32
|
-
activesupport (=
|
33
|
-
rack (~> 2.0, >= 2.0
|
32
|
+
actionpack (7.0.0)
|
33
|
+
actionview (= 7.0.0)
|
34
|
+
activesupport (= 7.0.0)
|
35
|
+
rack (~> 2.0, >= 2.2.0)
|
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 (
|
38
|
-
actionpack (=
|
39
|
-
activerecord (=
|
40
|
-
activestorage (=
|
41
|
-
activesupport (=
|
39
|
+
actiontext (7.0.0)
|
40
|
+
actionpack (= 7.0.0)
|
41
|
+
activerecord (= 7.0.0)
|
42
|
+
activestorage (= 7.0.0)
|
43
|
+
activesupport (= 7.0.0)
|
44
|
+
globalid (>= 0.6.0)
|
42
45
|
nokogiri (>= 1.8.5)
|
43
|
-
actionview (
|
44
|
-
activesupport (=
|
46
|
+
actionview (7.0.0)
|
47
|
+
activesupport (= 7.0.0)
|
45
48
|
builder (~> 3.1)
|
46
49
|
erubi (~> 1.4)
|
47
50
|
rails-dom-testing (~> 2.0)
|
48
51
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
49
|
-
activejob (
|
50
|
-
activesupport (=
|
52
|
+
activejob (7.0.0)
|
53
|
+
activesupport (= 7.0.0)
|
51
54
|
globalid (>= 0.3.6)
|
52
|
-
activemodel (
|
53
|
-
activesupport (=
|
54
|
-
activerecord (
|
55
|
-
activemodel (=
|
56
|
-
activesupport (=
|
57
|
-
activestorage (
|
58
|
-
actionpack (=
|
59
|
-
activejob (=
|
60
|
-
activerecord (=
|
61
|
-
|
62
|
-
|
55
|
+
activemodel (7.0.0)
|
56
|
+
activesupport (= 7.0.0)
|
57
|
+
activerecord (7.0.0)
|
58
|
+
activemodel (= 7.0.0)
|
59
|
+
activesupport (= 7.0.0)
|
60
|
+
activestorage (7.0.0)
|
61
|
+
actionpack (= 7.0.0)
|
62
|
+
activejob (= 7.0.0)
|
63
|
+
activerecord (= 7.0.0)
|
64
|
+
activesupport (= 7.0.0)
|
65
|
+
marcel (~> 1.0)
|
66
|
+
mini_mime (>= 1.1.0)
|
67
|
+
activesupport (7.0.0)
|
63
68
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
64
|
-
i18n (>=
|
65
|
-
minitest (
|
66
|
-
tzinfo (~>
|
67
|
-
|
68
|
-
appraisal (2.3.0)
|
69
|
+
i18n (>= 1.6, < 2)
|
70
|
+
minitest (>= 5.1)
|
71
|
+
tzinfo (~> 2.0)
|
72
|
+
appraisal (2.4.1)
|
69
73
|
bundler
|
70
74
|
rake
|
71
75
|
thor (>= 0.14.0)
|
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.7.1)
|
80
84
|
concurrent-ruby (~> 1.0)
|
81
|
-
dry-equalizer (0.3.0)
|
82
85
|
dry-initializer (3.0.4)
|
83
|
-
dry-monads (1.
|
86
|
+
dry-monads (1.4.0)
|
84
87
|
concurrent-ruby (~> 1.0)
|
85
|
-
dry-core (~> 0.
|
86
|
-
|
87
|
-
erubi (1.9.0)
|
88
|
+
dry-core (~> 0.7)
|
89
|
+
erubi (1.10.0)
|
88
90
|
fivemat (1.3.7)
|
89
|
-
globalid (0.
|
90
|
-
activesupport (>=
|
91
|
-
i18n (1.8.
|
91
|
+
globalid (1.0.0)
|
92
|
+
activesupport (>= 5.0)
|
93
|
+
i18n (1.8.11)
|
92
94
|
concurrent-ruby (~> 1.0)
|
93
95
|
json (2.3.0)
|
94
|
-
loofah (2.
|
96
|
+
loofah (2.13.0)
|
95
97
|
crass (~> 1.0.2)
|
96
98
|
nokogiri (>= 1.5.9)
|
97
99
|
mail (2.7.1)
|
98
100
|
mini_mime (>= 0.1.1)
|
99
|
-
marcel (0.
|
100
|
-
mimemagic (~> 0.3.2)
|
101
|
+
marcel (1.0.2)
|
101
102
|
method_source (0.9.2)
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
103
|
+
mini_mime (1.1.2)
|
104
|
+
mini_portile2 (2.6.1)
|
105
|
+
minitest (5.15.0)
|
106
|
+
nio4r (2.5.8)
|
107
|
+
nokogiri (1.12.5)
|
108
|
+
mini_portile2 (~> 2.6.1)
|
109
|
+
racc (~> 1.4)
|
109
110
|
parallel (1.19.2)
|
110
111
|
parser (2.7.2.0)
|
111
112
|
ast (~> 2.4.1)
|
112
113
|
pry (0.12.2)
|
113
114
|
coderay (~> 1.1.0)
|
114
115
|
method_source (~> 0.9.0)
|
116
|
+
racc (1.6.0)
|
115
117
|
rack (2.2.3)
|
116
118
|
rack-test (1.1.0)
|
117
119
|
rack (>= 1.0, < 3)
|
118
|
-
rails (
|
119
|
-
actioncable (=
|
120
|
-
actionmailbox (=
|
121
|
-
actionmailer (=
|
122
|
-
actionpack (=
|
123
|
-
actiontext (=
|
124
|
-
actionview (=
|
125
|
-
activejob (=
|
126
|
-
activemodel (=
|
127
|
-
activerecord (=
|
128
|
-
activestorage (=
|
129
|
-
activesupport (=
|
130
|
-
bundler (>= 1.
|
131
|
-
railties (=
|
132
|
-
sprockets-rails (>= 2.0.0)
|
120
|
+
rails (7.0.0)
|
121
|
+
actioncable (= 7.0.0)
|
122
|
+
actionmailbox (= 7.0.0)
|
123
|
+
actionmailer (= 7.0.0)
|
124
|
+
actionpack (= 7.0.0)
|
125
|
+
actiontext (= 7.0.0)
|
126
|
+
actionview (= 7.0.0)
|
127
|
+
activejob (= 7.0.0)
|
128
|
+
activemodel (= 7.0.0)
|
129
|
+
activerecord (= 7.0.0)
|
130
|
+
activestorage (= 7.0.0)
|
131
|
+
activesupport (= 7.0.0)
|
132
|
+
bundler (>= 1.15.0)
|
133
|
+
railties (= 7.0.0)
|
133
134
|
rails-dom-testing (2.0.3)
|
134
135
|
activesupport (>= 4.2.0)
|
135
136
|
nokogiri (>= 1.6)
|
136
|
-
rails-html-sanitizer (1.
|
137
|
+
rails-html-sanitizer (1.4.2)
|
137
138
|
loofah (~> 2.3)
|
138
|
-
railties (
|
139
|
-
actionpack (=
|
140
|
-
activesupport (=
|
139
|
+
railties (7.0.0)
|
140
|
+
actionpack (= 7.0.0)
|
141
|
+
activesupport (= 7.0.0)
|
141
142
|
method_source
|
142
|
-
rake (>=
|
143
|
-
thor (
|
143
|
+
rake (>= 12.2)
|
144
|
+
thor (~> 1.0)
|
145
|
+
zeitwerk (~> 2.5)
|
144
146
|
rainbow (3.0.0)
|
145
147
|
rake (12.3.3)
|
146
148
|
regexp_parser (1.8.2)
|
147
|
-
rexml (3.2.
|
148
|
-
rspec (3.
|
149
|
-
rspec-core (~> 3.
|
150
|
-
rspec-expectations (~> 3.
|
151
|
-
rspec-mocks (~> 3.
|
152
|
-
rspec-core (3.
|
153
|
-
rspec-support (~> 3.
|
154
|
-
rspec-expectations (3.
|
149
|
+
rexml (3.2.5)
|
150
|
+
rspec (3.10.0)
|
151
|
+
rspec-core (~> 3.10.0)
|
152
|
+
rspec-expectations (~> 3.10.0)
|
153
|
+
rspec-mocks (~> 3.10.0)
|
154
|
+
rspec-core (3.10.1)
|
155
|
+
rspec-support (~> 3.10.0)
|
156
|
+
rspec-expectations (3.10.1)
|
155
157
|
diff-lcs (>= 1.2.0, < 2.0)
|
156
|
-
rspec-support (~> 3.
|
157
|
-
rspec-mocks (3.
|
158
|
+
rspec-support (~> 3.10.0)
|
159
|
+
rspec-mocks (3.10.2)
|
158
160
|
diff-lcs (>= 1.2.0, < 2.0)
|
159
|
-
rspec-support (~> 3.
|
160
|
-
rspec-support (3.
|
161
|
+
rspec-support (~> 3.10.0)
|
162
|
+
rspec-support (3.10.2)
|
161
163
|
rspec_junit_formatter (0.4.1)
|
162
164
|
rspec-core (>= 2, < 4, != 2.12.0)
|
163
165
|
rubocop (0.93.1)
|
@@ -188,22 +190,14 @@ GEM
|
|
188
190
|
json (>= 1.8, < 3)
|
189
191
|
simplecov-html (~> 0.10.0)
|
190
192
|
simplecov-html (0.10.2)
|
191
|
-
|
193
|
+
thor (1.1.0)
|
194
|
+
tzinfo (2.0.4)
|
192
195
|
concurrent-ruby (~> 1.0)
|
193
|
-
rack (> 1, < 3)
|
194
|
-
sprockets-rails (3.2.2)
|
195
|
-
actionpack (>= 4.0)
|
196
|
-
activesupport (>= 4.0)
|
197
|
-
sprockets (>= 3.0.0)
|
198
|
-
thor (1.0.1)
|
199
|
-
thread_safe (0.3.6)
|
200
|
-
tzinfo (1.2.7)
|
201
|
-
thread_safe (~> 0.1)
|
202
196
|
unicode-display_width (1.7.0)
|
203
|
-
websocket-driver (0.7.
|
197
|
+
websocket-driver (0.7.5)
|
204
198
|
websocket-extensions (>= 0.1.0)
|
205
199
|
websocket-extensions (0.1.5)
|
206
|
-
zeitwerk (2.
|
200
|
+
zeitwerk (2.5.1)
|
207
201
|
|
208
202
|
PLATFORMS
|
209
203
|
ruby
|
@@ -221,4 +215,4 @@ DEPENDENCIES
|
|
221
215
|
simplecov (= 0.16.1)
|
222
216
|
|
223
217
|
BUNDLED WITH
|
224
|
-
2.
|
218
|
+
2.2.32
|
data/g2_command.gemspec
CHANGED
@@ -25,8 +25,8 @@ Gem::Specification.new do |spec|
|
|
25
25
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
26
26
|
spec.require_paths = ['lib']
|
27
27
|
|
28
|
-
spec.add_dependency 'activemodel', '>= 5.0', '< 7'
|
29
|
-
spec.add_dependency 'activesupport', '>= 5.0', '< 7'
|
28
|
+
spec.add_dependency 'activemodel', '>= 5.0', '< 7.1'
|
29
|
+
spec.add_dependency 'activesupport', '>= 5.0', '< 7.1'
|
30
30
|
spec.add_dependency 'dry-initializer', '~> 3.0'
|
31
31
|
spec.add_dependency 'dry-monads', '~> 1.3'
|
32
32
|
end
|
data/gemfiles/rails_6.0.gemfile
CHANGED
@@ -1,65 +1,65 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
g2_command (
|
5
|
-
activemodel (>= 5.0, < 7)
|
6
|
-
activesupport (>= 5.0, < 7)
|
4
|
+
g2_command (3.1.0)
|
5
|
+
activemodel (>= 5.0, < 7.1)
|
6
|
+
activesupport (>= 5.0, < 7.1)
|
7
7
|
dry-initializer (~> 3.0)
|
8
8
|
dry-monads (~> 1.3)
|
9
9
|
|
10
10
|
GEM
|
11
11
|
remote: https://rubygems.org/
|
12
12
|
specs:
|
13
|
-
actioncable (6.0.
|
14
|
-
actionpack (= 6.0.
|
13
|
+
actioncable (6.0.4.4)
|
14
|
+
actionpack (= 6.0.4.4)
|
15
15
|
nio4r (~> 2.0)
|
16
16
|
websocket-driver (>= 0.6.1)
|
17
|
-
actionmailbox (6.0.
|
18
|
-
actionpack (= 6.0.
|
19
|
-
activejob (= 6.0.
|
20
|
-
activerecord (= 6.0.
|
21
|
-
activestorage (= 6.0.
|
22
|
-
activesupport (= 6.0.
|
17
|
+
actionmailbox (6.0.4.4)
|
18
|
+
actionpack (= 6.0.4.4)
|
19
|
+
activejob (= 6.0.4.4)
|
20
|
+
activerecord (= 6.0.4.4)
|
21
|
+
activestorage (= 6.0.4.4)
|
22
|
+
activesupport (= 6.0.4.4)
|
23
23
|
mail (>= 2.7.1)
|
24
|
-
actionmailer (6.0.
|
25
|
-
actionpack (= 6.0.
|
26
|
-
actionview (= 6.0.
|
27
|
-
activejob (= 6.0.
|
24
|
+
actionmailer (6.0.4.4)
|
25
|
+
actionpack (= 6.0.4.4)
|
26
|
+
actionview (= 6.0.4.4)
|
27
|
+
activejob (= 6.0.4.4)
|
28
28
|
mail (~> 2.5, >= 2.5.4)
|
29
29
|
rails-dom-testing (~> 2.0)
|
30
|
-
actionpack (6.0.
|
31
|
-
actionview (= 6.0.
|
32
|
-
activesupport (= 6.0.
|
30
|
+
actionpack (6.0.4.4)
|
31
|
+
actionview (= 6.0.4.4)
|
32
|
+
activesupport (= 6.0.4.4)
|
33
33
|
rack (~> 2.0, >= 2.0.8)
|
34
34
|
rack-test (>= 0.6.3)
|
35
35
|
rails-dom-testing (~> 2.0)
|
36
36
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
37
|
-
actiontext (6.0.
|
38
|
-
actionpack (= 6.0.
|
39
|
-
activerecord (= 6.0.
|
40
|
-
activestorage (= 6.0.
|
41
|
-
activesupport (= 6.0.
|
37
|
+
actiontext (6.0.4.4)
|
38
|
+
actionpack (= 6.0.4.4)
|
39
|
+
activerecord (= 6.0.4.4)
|
40
|
+
activestorage (= 6.0.4.4)
|
41
|
+
activesupport (= 6.0.4.4)
|
42
42
|
nokogiri (>= 1.8.5)
|
43
|
-
actionview (6.0.
|
44
|
-
activesupport (= 6.0.
|
43
|
+
actionview (6.0.4.4)
|
44
|
+
activesupport (= 6.0.4.4)
|
45
45
|
builder (~> 3.1)
|
46
46
|
erubi (~> 1.4)
|
47
47
|
rails-dom-testing (~> 2.0)
|
48
48
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
49
|
-
activejob (6.0.
|
50
|
-
activesupport (= 6.0.
|
49
|
+
activejob (6.0.4.4)
|
50
|
+
activesupport (= 6.0.4.4)
|
51
51
|
globalid (>= 0.3.6)
|
52
|
-
activemodel (6.0.
|
53
|
-
activesupport (= 6.0.
|
54
|
-
activerecord (6.0.
|
55
|
-
activemodel (= 6.0.
|
56
|
-
activesupport (= 6.0.
|
57
|
-
activestorage (6.0.
|
58
|
-
actionpack (= 6.0.
|
59
|
-
activejob (= 6.0.
|
60
|
-
activerecord (= 6.0.
|
61
|
-
marcel (~> 0.
|
62
|
-
activesupport (6.0.
|
52
|
+
activemodel (6.0.4.4)
|
53
|
+
activesupport (= 6.0.4.4)
|
54
|
+
activerecord (6.0.4.4)
|
55
|
+
activemodel (= 6.0.4.4)
|
56
|
+
activesupport (= 6.0.4.4)
|
57
|
+
activestorage (6.0.4.4)
|
58
|
+
actionpack (= 6.0.4.4)
|
59
|
+
activejob (= 6.0.4.4)
|
60
|
+
activerecord (= 6.0.4.4)
|
61
|
+
marcel (~> 1.0.0)
|
62
|
+
activesupport (6.0.4.4)
|
63
63
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
64
64
|
i18n (>= 0.7, < 2)
|
65
65
|
minitest (~> 5.1)
|
@@ -72,79 +72,77 @@ GEM
|
|
72
72
|
ast (2.4.1)
|
73
73
|
builder (3.2.4)
|
74
74
|
coderay (1.1.3)
|
75
|
-
concurrent-ruby (1.1.
|
75
|
+
concurrent-ruby (1.1.9)
|
76
76
|
crass (1.0.6)
|
77
77
|
diff-lcs (1.4.4)
|
78
78
|
docile (1.3.2)
|
79
|
-
dry-core (0.
|
79
|
+
dry-core (0.7.1)
|
80
80
|
concurrent-ruby (~> 1.0)
|
81
|
-
dry-equalizer (0.3.0)
|
82
81
|
dry-initializer (3.0.4)
|
83
|
-
dry-monads (1.
|
82
|
+
dry-monads (1.4.0)
|
84
83
|
concurrent-ruby (~> 1.0)
|
85
|
-
dry-core (~> 0.
|
86
|
-
|
87
|
-
erubi (1.9.0)
|
84
|
+
dry-core (~> 0.7)
|
85
|
+
erubi (1.10.0)
|
88
86
|
fivemat (1.3.7)
|
89
|
-
globalid (0.
|
90
|
-
activesupport (>=
|
91
|
-
i18n (1.8.
|
87
|
+
globalid (1.0.0)
|
88
|
+
activesupport (>= 5.0)
|
89
|
+
i18n (1.8.11)
|
92
90
|
concurrent-ruby (~> 1.0)
|
93
91
|
json (2.3.1)
|
94
|
-
loofah (2.
|
92
|
+
loofah (2.13.0)
|
95
93
|
crass (~> 1.0.2)
|
96
94
|
nokogiri (>= 1.5.9)
|
97
95
|
mail (2.7.1)
|
98
96
|
mini_mime (>= 0.1.1)
|
99
|
-
marcel (0.
|
100
|
-
mimemagic (~> 0.3.2)
|
97
|
+
marcel (1.0.2)
|
101
98
|
method_source (1.0.0)
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
99
|
+
mini_mime (1.1.2)
|
100
|
+
mini_portile2 (2.6.1)
|
101
|
+
minitest (5.15.0)
|
102
|
+
nio4r (2.5.8)
|
103
|
+
nokogiri (1.12.5)
|
104
|
+
mini_portile2 (~> 2.6.1)
|
105
|
+
racc (~> 1.4)
|
109
106
|
parallel (1.19.2)
|
110
107
|
parser (2.7.2.0)
|
111
108
|
ast (~> 2.4.1)
|
112
109
|
pry (0.13.1)
|
113
110
|
coderay (~> 1.1)
|
114
111
|
method_source (~> 1.0)
|
112
|
+
racc (1.6.0)
|
115
113
|
rack (2.2.3)
|
116
114
|
rack-test (1.1.0)
|
117
115
|
rack (>= 1.0, < 3)
|
118
|
-
rails (6.0.
|
119
|
-
actioncable (= 6.0.
|
120
|
-
actionmailbox (= 6.0.
|
121
|
-
actionmailer (= 6.0.
|
122
|
-
actionpack (= 6.0.
|
123
|
-
actiontext (= 6.0.
|
124
|
-
actionview (= 6.0.
|
125
|
-
activejob (= 6.0.
|
126
|
-
activemodel (= 6.0.
|
127
|
-
activerecord (= 6.0.
|
128
|
-
activestorage (= 6.0.
|
129
|
-
activesupport (= 6.0.
|
116
|
+
rails (6.0.4.4)
|
117
|
+
actioncable (= 6.0.4.4)
|
118
|
+
actionmailbox (= 6.0.4.4)
|
119
|
+
actionmailer (= 6.0.4.4)
|
120
|
+
actionpack (= 6.0.4.4)
|
121
|
+
actiontext (= 6.0.4.4)
|
122
|
+
actionview (= 6.0.4.4)
|
123
|
+
activejob (= 6.0.4.4)
|
124
|
+
activemodel (= 6.0.4.4)
|
125
|
+
activerecord (= 6.0.4.4)
|
126
|
+
activestorage (= 6.0.4.4)
|
127
|
+
activesupport (= 6.0.4.4)
|
130
128
|
bundler (>= 1.3.0)
|
131
|
-
railties (= 6.0.
|
129
|
+
railties (= 6.0.4.4)
|
132
130
|
sprockets-rails (>= 2.0.0)
|
133
131
|
rails-dom-testing (2.0.3)
|
134
132
|
activesupport (>= 4.2.0)
|
135
133
|
nokogiri (>= 1.6)
|
136
|
-
rails-html-sanitizer (1.
|
134
|
+
rails-html-sanitizer (1.4.2)
|
137
135
|
loofah (~> 2.3)
|
138
|
-
railties (6.0.
|
139
|
-
actionpack (= 6.0.
|
140
|
-
activesupport (= 6.0.
|
136
|
+
railties (6.0.4.4)
|
137
|
+
actionpack (= 6.0.4.4)
|
138
|
+
activesupport (= 6.0.4.4)
|
141
139
|
method_source
|
142
140
|
rake (>= 0.8.7)
|
143
141
|
thor (>= 0.20.3, < 2.0)
|
144
142
|
rainbow (3.0.0)
|
145
143
|
rake (12.3.3)
|
146
144
|
regexp_parser (1.8.2)
|
147
|
-
rexml (3.2.
|
145
|
+
rexml (3.2.5)
|
148
146
|
rspec (3.9.0)
|
149
147
|
rspec-core (~> 3.9.0)
|
150
148
|
rspec-expectations (~> 3.9.0)
|
@@ -191,19 +189,19 @@ GEM
|
|
191
189
|
sprockets (4.0.2)
|
192
190
|
concurrent-ruby (~> 1.0)
|
193
191
|
rack (> 1, < 3)
|
194
|
-
sprockets-rails (3.
|
195
|
-
actionpack (>=
|
196
|
-
activesupport (>=
|
192
|
+
sprockets-rails (3.4.2)
|
193
|
+
actionpack (>= 5.2)
|
194
|
+
activesupport (>= 5.2)
|
197
195
|
sprockets (>= 3.0.0)
|
198
|
-
thor (1.0
|
196
|
+
thor (1.1.0)
|
199
197
|
thread_safe (0.3.6)
|
200
|
-
tzinfo (1.2.
|
198
|
+
tzinfo (1.2.9)
|
201
199
|
thread_safe (~> 0.1)
|
202
200
|
unicode-display_width (1.7.0)
|
203
|
-
websocket-driver (0.7.
|
201
|
+
websocket-driver (0.7.5)
|
204
202
|
websocket-extensions (>= 0.1.0)
|
205
203
|
websocket-extensions (0.1.5)
|
206
|
-
zeitwerk (2.
|
204
|
+
zeitwerk (2.5.1)
|
207
205
|
|
208
206
|
PLATFORMS
|
209
207
|
ruby
|
@@ -213,7 +211,7 @@ DEPENDENCIES
|
|
213
211
|
fivemat
|
214
212
|
g2_command!
|
215
213
|
pry
|
216
|
-
rails (
|
214
|
+
rails (~> 6.0.3)
|
217
215
|
rake (~> 12.0)
|
218
216
|
rspec (~> 3.0)
|
219
217
|
rspec_junit_formatter
|
@@ -221,4 +219,4 @@ DEPENDENCIES
|
|
221
219
|
simplecov (= 0.16.1)
|
222
220
|
|
223
221
|
BUNDLED WITH
|
224
|
-
2.
|
222
|
+
2.2.32
|
@@ -5,12 +5,11 @@ source "https://rubygems.org"
|
|
5
5
|
gem "appraisal"
|
6
6
|
gem "fivemat"
|
7
7
|
gem "pry"
|
8
|
-
gem "rails", "
|
8
|
+
gem "rails", "~> 6.1.0"
|
9
9
|
gem "rake", "~> 12.0"
|
10
10
|
gem "rspec", "~> 3.0"
|
11
11
|
gem "rspec_junit_formatter"
|
12
12
|
gem "rubocop-g2"
|
13
13
|
gem "simplecov", "0.16.1"
|
14
|
-
gem "sprockets", "~> 3"
|
15
14
|
|
16
15
|
gemspec path: "../"
|