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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 37d3ff7d695a44bf5b9f03bc6b74869f2c22258b09fef87ce3068e4ad901df11
4
- data.tar.gz: 661b1cb48d488551978ccb94783af650e903673bb5eab8a6e12593669e3886d3
3
+ metadata.gz: f6d6770cc83fed0548f0e18e529e6d92b8caf628ba436bd507da56da9d7b1cdd
4
+ data.tar.gz: 55692980812dd3b2bf1322c26763889b65422f7653ba388072ec597881ce2d1f
5
5
  SHA512:
6
- metadata.gz: d72406ecd35b764f26fb45455bd7deeaa1721b39f2e9ba48979ea4ef1f9a5b5412ab1a17055186cda79c4c9339c126c3795f1f8c49c791993319215f808d9939
7
- data.tar.gz: 514a19da936b88ff1fe2fa191f5a76832a09cfdee7b8c42c0fda19b9927617b58205344d101f3070bc6b2c1a752f00ad806edac60e2f9efffb1c80efcc7ec452
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.12
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.4.10', '2.5.8', '2.6.6', '2.7.1']
77
- gemfile: ['5.1', '5.2', '6.0']
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: '2.4.10'
80
- gemfile: '6.0'
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
@@ -7,7 +7,8 @@ require:
7
7
  - rubocop-g2
8
8
 
9
9
  AllCops:
10
- TargetRubyVersion: 2.7
10
+ NewCops: enable
11
+ TargetRubyVersion: 2.4
11
12
  Exclude:
12
13
  - gemfiles/*
13
14
 
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.7.1
1
+ 2.7.2
data/.tool-versions CHANGED
@@ -1 +1 @@
1
- ruby 2.7.2
1
+ ruby 3.0.0
data/Appraisals CHANGED
@@ -1,13 +1,17 @@
1
- appraise 'rails-5.1' do
2
- gem 'rails', '5.1.7'
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 'rails-5.2' do
7
- gem 'rails', '5.2.4'
6
+ appraise 'rails_5.2' do
7
+ gem 'rails', '~> 5.2'
8
8
  gem 'sprockets', '~> 3'
9
9
  end
10
10
 
11
- appraise 'rails-6.0' do
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 (2.2.0)
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.0.3.3)
14
- actionpack (= 6.0.3.3)
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.0.3.3)
18
- actionpack (= 6.0.3.3)
19
- activejob (= 6.0.3.3)
20
- activerecord (= 6.0.3.3)
21
- activestorage (= 6.0.3.3)
22
- activesupport (= 6.0.3.3)
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.0.3.3)
25
- actionpack (= 6.0.3.3)
26
- actionview (= 6.0.3.3)
27
- activejob (= 6.0.3.3)
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.0.3.3)
31
- actionview (= 6.0.3.3)
32
- activesupport (= 6.0.3.3)
33
- rack (~> 2.0, >= 2.0.8)
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.0.3.3)
38
- actionpack (= 6.0.3.3)
39
- activerecord (= 6.0.3.3)
40
- activestorage (= 6.0.3.3)
41
- activesupport (= 6.0.3.3)
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.0.3.3)
44
- activesupport (= 6.0.3.3)
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.0.3.3)
50
- activesupport (= 6.0.3.3)
51
+ activejob (6.1.4.1)
52
+ activesupport (= 6.1.4.1)
51
53
  globalid (>= 0.3.6)
52
- activemodel (6.0.3.3)
53
- activesupport (= 6.0.3.3)
54
- activerecord (6.0.3.3)
55
- activemodel (= 6.0.3.3)
56
- activesupport (= 6.0.3.3)
57
- activestorage (6.0.3.3)
58
- actionpack (= 6.0.3.3)
59
- activejob (= 6.0.3.3)
60
- activerecord (= 6.0.3.3)
61
- marcel (~> 0.3.1)
62
- activesupport (6.0.3.3)
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 (>= 0.7, < 2)
65
- minitest (~> 5.1)
66
- tzinfo (~> 1.1)
67
- zeitwerk (~> 2.2, >= 2.2.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.7)
79
+ concurrent-ruby (1.1.9)
76
80
  crass (1.0.6)
77
- diff-lcs (1.3)
81
+ diff-lcs (1.4.4)
78
82
  docile (1.3.2)
79
- dry-core (0.4.9)
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.9.0)
91
+ erubi (1.10.0)
88
92
  fivemat (1.3.7)
89
- globalid (0.4.2)
90
- activesupport (>= 4.2.0)
91
- i18n (1.8.5)
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.7.0)
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.3.3)
101
- mimemagic (~> 0.3.2)
103
+ marcel (1.0.2)
102
104
  method_source (0.9.2)
103
- mimemagic (0.3.5)
104
- mini_mime (1.0.2)
105
- mini_portile2 (2.4.0)
106
- minitest (5.14.2)
107
- nio4r (2.5.4)
108
- nokogiri (1.10.10)
109
- mini_portile2 (~> 2.4.0)
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.1.4)
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.0.3.3)
120
- actioncable (= 6.0.3.3)
121
- actionmailbox (= 6.0.3.3)
122
- actionmailer (= 6.0.3.3)
123
- actionpack (= 6.0.3.3)
124
- actiontext (= 6.0.3.3)
125
- actionview (= 6.0.3.3)
126
- activejob (= 6.0.3.3)
127
- activemodel (= 6.0.3.3)
128
- activerecord (= 6.0.3.3)
129
- activestorage (= 6.0.3.3)
130
- activesupport (= 6.0.3.3)
131
- bundler (>= 1.3.0)
132
- railties (= 6.0.3.3)
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.3.0)
140
+ rails-html-sanitizer (1.4.2)
138
141
  loofah (~> 2.3)
139
- railties (6.0.3.3)
140
- actionpack (= 6.0.3.3)
141
- activesupport (= 6.0.3.3)
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.8.7)
144
- thor (>= 0.20.3, < 2.0)
146
+ rake (>= 0.13)
147
+ thor (~> 1.0)
145
148
  rainbow (3.0.0)
146
149
  rake (12.3.3)
147
- rexml (3.2.4)
148
- rspec (3.9.0)
149
- rspec-core (~> 3.9.0)
150
- rspec-expectations (~> 3.9.0)
151
- rspec-mocks (~> 3.9.0)
152
- rspec-core (3.9.1)
153
- rspec-support (~> 3.9.1)
154
- rspec-expectations (3.9.1)
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.9.0)
157
- rspec-mocks (3.9.1)
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.9.0)
160
- rspec-support (3.9.2)
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.82.0)
164
- jaro_winkler (~> 1.5.1)
167
+ rubocop (0.93.1)
165
168
  parallel (~> 1.10)
166
- parser (>= 2.7.0.1)
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-g2 (1.1.0)
172
- rubocop (= 0.82.0)
173
- rubocop-rails (= 2.5.2)
174
- rubocop-rspec (= 1.39.0)
175
- rubocop-rails (2.5.2)
176
- activesupport
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.72.0)
179
- rubocop-rspec (1.39.0)
180
- rubocop (>= 0.68.1)
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.1)
195
- thread_safe (0.3.6)
196
- tzinfo (1.2.7)
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.3)
206
+ websocket-driver (0.7.5)
200
207
  websocket-extensions (>= 0.1.0)
201
208
  websocket-extensions (0.1.5)
202
- zeitwerk (2.4.0)
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.1.4
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.3.0')
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'
@@ -5,7 +5,7 @@ source "https://rubygems.org"
5
5
  gem "appraisal"
6
6
  gem "fivemat"
7
7
  gem "pry"
8
- gem "rails", "5.1.7"
8
+ gem "rails", "~> 5.1", "< 5.2"
9
9
  gem "rake", "~> 12.0"
10
10
  gem "rspec", "~> 3.0"
11
11
  gem "rspec_junit_formatter"
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- g2_command (2.2.0)
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.7)
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.4.9)
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.3.5)
65
+ dry-monads (1.4.0)
67
66
  concurrent-ruby (~> 1.0)
68
- dry-core (~> 0.4, >= 0.4.4)
69
- dry-equalizer
70
- erubi (1.9.0)
67
+ dry-core (~> 0.7)
68
+ erubi (1.10.0)
71
69
  fivemat (1.3.7)
72
- globalid (0.4.2)
73
- activesupport (>= 4.2.0)
74
- i18n (1.8.5)
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.7.0)
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.0.2)
84
- mini_portile2 (2.4.0)
85
- minitest (5.14.2)
86
- nio4r (2.5.4)
87
- nokogiri (1.10.10)
88
- mini_portile2 (~> 2.4.0)
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.3.0)
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.4)
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.1)
175
+ thor (1.1.0)
176
176
  thread_safe (0.3.6)
177
- tzinfo (1.2.7)
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 (= 5.1.7)
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.1.4
201
+ 2.2.3
@@ -5,7 +5,7 @@ source "https://rubygems.org"
5
5
  gem "appraisal"
6
6
  gem "fivemat"
7
7
  gem "pry"
8
- gem "rails", "5.2.4"
8
+ gem "rails", "~> 5.2"
9
9
  gem "rake", "~> 12.0"
10
10
  gem "rspec", "~> 3.0"
11
11
  gem "rspec_junit_formatter"