rspec-resembles_json_matchers 0.9.0 → 0.9.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +117 -58
  3. data/.travis.yml +3 -2
  4. data/Appraisals +7 -5
  5. data/Gemfile +3 -1
  6. data/Guardfile +6 -5
  7. data/LICENSE.txt +13 -0
  8. data/README.md +5 -0
  9. data/Rakefile +2 -0
  10. data/examples/example_spec.rb +67 -63
  11. data/gemfiles/.bundle/config +3 -0
  12. data/gemfiles/rails_5.gemfile +1 -1
  13. data/gemfiles/rails_5.gemfile.lock +100 -67
  14. data/gemfiles/{rails_42.gemfile → rails_6.gemfile} +2 -2
  15. data/gemfiles/rails_6.gemfile.lock +236 -0
  16. data/lib/rspec/resembles_json_matchers.rb +4 -3
  17. data/lib/rspec/resembles_json_matchers/attribute_differ.rb +38 -43
  18. data/lib/rspec/resembles_json_matchers/attribute_matcher.rb +2 -5
  19. data/lib/rspec/resembles_json_matchers/helpers.rb +4 -3
  20. data/lib/rspec/resembles_json_matchers/json_matcher.rb +7 -6
  21. data/lib/rspec/resembles_json_matchers/matcherizer.rb +2 -3
  22. data/lib/rspec/resembles_json_matchers/resembles_any_of_matcher.rb +9 -13
  23. data/lib/rspec/resembles_json_matchers/resembles_array_matcher.rb +2 -4
  24. data/lib/rspec/resembles_json_matchers/resembles_boolean_matcher.rb +1 -0
  25. data/lib/rspec/resembles_json_matchers/resembles_class_matcher.rb +2 -1
  26. data/lib/rspec/resembles_json_matchers/resembles_date_matcher.rb +2 -0
  27. data/lib/rspec/resembles_json_matchers/resembles_hash_matcher.rb +11 -11
  28. data/lib/rspec/resembles_json_matchers/resembles_matcher.rb +8 -16
  29. data/lib/rspec/resembles_json_matchers/resembles_nil_matcher.rb +1 -0
  30. data/lib/rspec/resembles_json_matchers/resembles_numeric_matcher.rb +2 -1
  31. data/lib/rspec/resembles_json_matchers/resembles_route_matcher.rb +1 -0
  32. data/lib/rspec/resembles_json_matchers/resembles_string_matcher.rb +1 -0
  33. data/lib/rspec/resembles_json_matchers/string_indent.rb +4 -2
  34. data/lib/rspec/resembles_json_matchers/version.rb +3 -1
  35. data/rspec-resembles_json_matchers.gemspec +14 -9
  36. metadata +66 -24
  37. data/gemfiles/rails_42.gemfile.lock +0 -183
@@ -1,2 +1,5 @@
1
1
  ---
2
2
  BUNDLE_RETRY: "1"
3
+ BUNDLE_DEPLOYMENT: "true"
4
+ BUNDLE_PATH: "/home/rando/Code/personal/rspec-resembles_json_matchers/vendor/bundle"
5
+ BUNDLE_FROZEN: "true"
@@ -2,7 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rails", "~> 5.1.0"
5
+ gem "rails", "~> 5.2.0"
6
6
  gem "rspec", "~> 3.6.0"
7
7
 
8
8
  gemspec path: "../"
@@ -1,68 +1,73 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- rspec-resembles_json_matchers (0.7.4)
4
+ rspec-resembles_json_matchers (0.9.0)
5
5
  activesupport (>= 3.0)
6
- rspec (>= 2.0, < 4.0.0.a)
7
- rspec-expectations (>= 2.0, < 4.0.0.a)
8
- rspec-support (>= 2.0, < 4.0.0.a)
6
+ rspec (>= 3.0, < 4.0.0.a)
7
+ rspec-expectations (>= 3.0, < 4.0.0.a)
8
+ rspec-support (>= 3.0, < 4.0.0.a)
9
9
 
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- actioncable (5.1.4)
14
- actionpack (= 5.1.4)
13
+ actioncable (5.2.4.3)
14
+ actionpack (= 5.2.4.3)
15
15
  nio4r (~> 2.0)
16
- websocket-driver (~> 0.6.1)
17
- actionmailer (5.1.4)
18
- actionpack (= 5.1.4)
19
- actionview (= 5.1.4)
20
- activejob (= 5.1.4)
16
+ websocket-driver (>= 0.6.1)
17
+ actionmailer (5.2.4.3)
18
+ actionpack (= 5.2.4.3)
19
+ actionview (= 5.2.4.3)
20
+ activejob (= 5.2.4.3)
21
21
  mail (~> 2.5, >= 2.5.4)
22
22
  rails-dom-testing (~> 2.0)
23
- actionpack (5.1.4)
24
- actionview (= 5.1.4)
25
- activesupport (= 5.1.4)
26
- rack (~> 2.0)
23
+ actionpack (5.2.4.3)
24
+ actionview (= 5.2.4.3)
25
+ activesupport (= 5.2.4.3)
26
+ rack (~> 2.0, >= 2.0.8)
27
27
  rack-test (>= 0.6.3)
28
28
  rails-dom-testing (~> 2.0)
29
29
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
30
- actionview (5.1.4)
31
- activesupport (= 5.1.4)
30
+ actionview (5.2.4.3)
31
+ activesupport (= 5.2.4.3)
32
32
  builder (~> 3.1)
33
33
  erubi (~> 1.4)
34
34
  rails-dom-testing (~> 2.0)
35
35
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
36
- activejob (5.1.4)
37
- activesupport (= 5.1.4)
36
+ activejob (5.2.4.3)
37
+ activesupport (= 5.2.4.3)
38
38
  globalid (>= 0.3.6)
39
- activemodel (5.1.4)
40
- activesupport (= 5.1.4)
41
- activerecord (5.1.4)
42
- activemodel (= 5.1.4)
43
- activesupport (= 5.1.4)
44
- arel (~> 8.0)
45
- activesupport (5.1.4)
39
+ activemodel (5.2.4.3)
40
+ activesupport (= 5.2.4.3)
41
+ activerecord (5.2.4.3)
42
+ activemodel (= 5.2.4.3)
43
+ activesupport (= 5.2.4.3)
44
+ arel (>= 9.0)
45
+ activestorage (5.2.4.3)
46
+ actionpack (= 5.2.4.3)
47
+ activerecord (= 5.2.4.3)
48
+ marcel (~> 0.3.1)
49
+ activesupport (5.2.4.3)
46
50
  concurrent-ruby (~> 1.0, >= 1.0.2)
47
- i18n (~> 0.7)
51
+ i18n (>= 0.7, < 2)
48
52
  minitest (~> 5.1)
49
53
  tzinfo (~> 1.1)
50
54
  appraisal (2.2.0)
51
55
  bundler
52
56
  rake
53
57
  thor (>= 0.14.0)
54
- arel (8.0.0)
58
+ arel (9.0.0)
59
+ ast (2.4.0)
55
60
  awesome_print (1.8.0)
56
- builder (3.2.3)
61
+ builder (3.2.4)
57
62
  byebug (9.1.0)
58
63
  coderay (1.1.2)
59
- concurrent-ruby (1.0.5)
60
- crass (1.0.3)
64
+ concurrent-ruby (1.1.6)
65
+ crass (1.0.6)
61
66
  diff-lcs (1.3)
62
- erubi (1.7.0)
67
+ erubi (1.9.0)
63
68
  ffi (1.9.18)
64
69
  formatador (0.2.5)
65
- globalid (0.4.1)
70
+ globalid (0.4.2)
66
71
  activesupport (>= 4.2.0)
67
72
  guard (2.14.1)
68
73
  formatador (>= 0.2.4)
@@ -78,29 +83,35 @@ GEM
78
83
  guard (~> 2.1)
79
84
  guard-compat (~> 1.1)
80
85
  rspec (>= 2.99.0, < 4.0)
81
- i18n (0.9.1)
86
+ i18n (1.8.2)
82
87
  concurrent-ruby (~> 1.0)
83
88
  listen (3.1.5)
84
89
  rb-fsevent (~> 0.9, >= 0.9.4)
85
90
  rb-inotify (~> 0.9, >= 0.9.7)
86
91
  ruby_dep (~> 1.2)
87
- loofah (2.1.1)
92
+ loofah (2.5.0)
88
93
  crass (~> 1.0.2)
89
94
  nokogiri (>= 1.5.9)
90
95
  lumberjack (1.0.12)
91
- mail (2.7.0)
96
+ mail (2.7.1)
92
97
  mini_mime (>= 0.1.1)
98
+ marcel (0.3.3)
99
+ mimemagic (~> 0.3.2)
93
100
  method_source (0.9.0)
94
- mini_mime (1.0.0)
95
- mini_portile2 (2.3.0)
96
- minitest (5.10.3)
101
+ mimemagic (0.3.5)
102
+ mini_mime (1.0.2)
103
+ mini_portile2 (2.4.0)
104
+ minitest (5.14.1)
97
105
  nenv (0.3.0)
98
- nio4r (2.2.0)
99
- nokogiri (1.8.1)
100
- mini_portile2 (~> 2.3.0)
106
+ nio4r (2.5.2)
107
+ nokogiri (1.10.9)
108
+ mini_portile2 (~> 2.4.0)
101
109
  notiffany (0.1.1)
102
110
  nenv (~> 0.1)
103
111
  shellany (~> 0.0)
112
+ parallel (1.19.1)
113
+ parser (2.7.1.3)
114
+ ast (~> 2.4.0)
104
115
  pry (0.11.3)
105
116
  coderay (~> 1.1.0)
106
117
  method_source (~> 0.9.0)
@@ -109,36 +120,39 @@ GEM
109
120
  pry (~> 0.10)
110
121
  pry-state (0.1.10)
111
122
  pry (>= 0.9.10, < 0.12.0)
112
- rack (2.0.3)
113
- rack-test (0.8.2)
123
+ rack (2.2.2)
124
+ rack-test (1.1.0)
114
125
  rack (>= 1.0, < 3)
115
- rails (5.1.4)
116
- actioncable (= 5.1.4)
117
- actionmailer (= 5.1.4)
118
- actionpack (= 5.1.4)
119
- actionview (= 5.1.4)
120
- activejob (= 5.1.4)
121
- activemodel (= 5.1.4)
122
- activerecord (= 5.1.4)
123
- activesupport (= 5.1.4)
126
+ rails (5.2.4.3)
127
+ actioncable (= 5.2.4.3)
128
+ actionmailer (= 5.2.4.3)
129
+ actionpack (= 5.2.4.3)
130
+ actionview (= 5.2.4.3)
131
+ activejob (= 5.2.4.3)
132
+ activemodel (= 5.2.4.3)
133
+ activerecord (= 5.2.4.3)
134
+ activestorage (= 5.2.4.3)
135
+ activesupport (= 5.2.4.3)
124
136
  bundler (>= 1.3.0)
125
- railties (= 5.1.4)
137
+ railties (= 5.2.4.3)
126
138
  sprockets-rails (>= 2.0.0)
127
139
  rails-dom-testing (2.0.3)
128
140
  activesupport (>= 4.2.0)
129
141
  nokogiri (>= 1.6)
130
- rails-html-sanitizer (1.0.3)
131
- loofah (~> 2.0)
132
- railties (5.1.4)
133
- actionpack (= 5.1.4)
134
- activesupport (= 5.1.4)
142
+ rails-html-sanitizer (1.3.0)
143
+ loofah (~> 2.3)
144
+ railties (5.2.4.3)
145
+ actionpack (= 5.2.4.3)
146
+ activesupport (= 5.2.4.3)
135
147
  method_source
136
148
  rake (>= 0.8.7)
137
- thor (>= 0.18.1, < 2.0)
149
+ thor (>= 0.19.0, < 2.0)
150
+ rainbow (3.0.0)
138
151
  rake (12.3.0)
139
152
  rb-fsevent (0.10.2)
140
153
  rb-inotify (0.9.10)
141
154
  ffi (>= 0.5.0, < 2)
155
+ rexml (3.2.4)
142
156
  rspec (3.6.0)
143
157
  rspec-core (~> 3.6.0)
144
158
  rspec-expectations (~> 3.6.0)
@@ -152,9 +166,24 @@ GEM
152
166
  diff-lcs (>= 1.2.0, < 2.0)
153
167
  rspec-support (~> 3.6.0)
154
168
  rspec-support (3.6.0)
169
+ rubocop (0.84.0)
170
+ parallel (~> 1.10)
171
+ parser (>= 2.7.0.1)
172
+ rainbow (>= 2.2.2, < 4.0)
173
+ rexml
174
+ rubocop-ast (>= 0.0.3)
175
+ ruby-progressbar (~> 1.7)
176
+ unicode-display_width (>= 1.4.0, < 2.0)
177
+ rubocop-ast (0.0.3)
178
+ parser (>= 2.7.0.1)
179
+ rubocop-performance (1.6.0)
180
+ rubocop (>= 0.71.0)
181
+ rubocop-rspec (1.39.0)
182
+ rubocop (>= 0.68.1)
183
+ ruby-progressbar (1.10.1)
155
184
  ruby_dep (1.5.0)
156
185
  shellany (0.0.1)
157
- sprockets (3.7.1)
186
+ sprockets (4.0.0)
158
187
  concurrent-ruby (~> 1.0)
159
188
  rack (> 1, < 3)
160
189
  sprockets-rails (3.2.1)
@@ -163,11 +192,12 @@ GEM
163
192
  sprockets (>= 3.0.0)
164
193
  thor (0.20.0)
165
194
  thread_safe (0.3.6)
166
- tzinfo (1.2.4)
195
+ tzinfo (1.2.7)
167
196
  thread_safe (~> 0.1)
168
- websocket-driver (0.6.5)
197
+ unicode-display_width (1.7.0)
198
+ websocket-driver (0.7.2)
169
199
  websocket-extensions (>= 0.1.0)
170
- websocket-extensions (0.1.3)
200
+ websocket-extensions (0.1.4)
171
201
 
172
202
  PLATFORMS
173
203
  ruby
@@ -175,15 +205,18 @@ PLATFORMS
175
205
  DEPENDENCIES
176
206
  appraisal
177
207
  awesome_print
178
- bundler (~> 1.11)
208
+ bundler (~> 2.0)
179
209
  guard
180
210
  guard-rspec
181
211
  pry-byebug
182
212
  pry-state
183
- rails (~> 5.1.0)
213
+ rails (~> 5.2.0)
184
214
  rake
185
215
  rspec (~> 3.6.0)
186
216
  rspec-resembles_json_matchers!
217
+ rubocop
218
+ rubocop-performance
219
+ rubocop-rspec
187
220
 
188
221
  BUNDLED WITH
189
- 1.16.1
222
+ 2.1.4
@@ -2,7 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rails", "~> 4.2"
6
- gem "rspec", "~> 3.4"
5
+ gem "rails", "~> 6.0.0"
6
+ gem "rspec", "~> 3.9.0"
7
7
 
8
8
  gemspec path: "../"
@@ -0,0 +1,236 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ rspec-resembles_json_matchers (0.9.0)
5
+ activesupport (>= 3.0)
6
+ rspec (>= 3.0, < 4.0.0.a)
7
+ rspec-expectations (>= 3.0, < 4.0.0.a)
8
+ rspec-support (>= 3.0, < 4.0.0.a)
9
+
10
+ GEM
11
+ remote: https://rubygems.org/
12
+ specs:
13
+ actioncable (6.0.3)
14
+ actionpack (= 6.0.3)
15
+ nio4r (~> 2.0)
16
+ websocket-driver (>= 0.6.1)
17
+ actionmailbox (6.0.3)
18
+ actionpack (= 6.0.3)
19
+ activejob (= 6.0.3)
20
+ activerecord (= 6.0.3)
21
+ activestorage (= 6.0.3)
22
+ activesupport (= 6.0.3)
23
+ mail (>= 2.7.1)
24
+ actionmailer (6.0.3)
25
+ actionpack (= 6.0.3)
26
+ actionview (= 6.0.3)
27
+ activejob (= 6.0.3)
28
+ mail (~> 2.5, >= 2.5.4)
29
+ rails-dom-testing (~> 2.0)
30
+ actionpack (6.0.3)
31
+ actionview (= 6.0.3)
32
+ activesupport (= 6.0.3)
33
+ rack (~> 2.0, >= 2.0.8)
34
+ rack-test (>= 0.6.3)
35
+ rails-dom-testing (~> 2.0)
36
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
37
+ actiontext (6.0.3)
38
+ actionpack (= 6.0.3)
39
+ activerecord (= 6.0.3)
40
+ activestorage (= 6.0.3)
41
+ activesupport (= 6.0.3)
42
+ nokogiri (>= 1.8.5)
43
+ actionview (6.0.3)
44
+ activesupport (= 6.0.3)
45
+ builder (~> 3.1)
46
+ erubi (~> 1.4)
47
+ rails-dom-testing (~> 2.0)
48
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
49
+ activejob (6.0.3)
50
+ activesupport (= 6.0.3)
51
+ globalid (>= 0.3.6)
52
+ activemodel (6.0.3)
53
+ activesupport (= 6.0.3)
54
+ activerecord (6.0.3)
55
+ activemodel (= 6.0.3)
56
+ activesupport (= 6.0.3)
57
+ activestorage (6.0.3)
58
+ actionpack (= 6.0.3)
59
+ activejob (= 6.0.3)
60
+ activerecord (= 6.0.3)
61
+ marcel (~> 0.3.1)
62
+ activesupport (6.0.3)
63
+ 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
+ appraisal (2.2.0)
69
+ bundler
70
+ rake
71
+ thor (>= 0.14.0)
72
+ ast (2.4.0)
73
+ awesome_print (1.8.0)
74
+ builder (3.2.4)
75
+ byebug (11.1.3)
76
+ coderay (1.1.3)
77
+ concurrent-ruby (1.1.6)
78
+ crass (1.0.6)
79
+ diff-lcs (1.3)
80
+ erubi (1.9.0)
81
+ ffi (1.12.2)
82
+ formatador (0.2.5)
83
+ globalid (0.4.2)
84
+ activesupport (>= 4.2.0)
85
+ guard (2.16.2)
86
+ formatador (>= 0.2.4)
87
+ listen (>= 2.7, < 4.0)
88
+ lumberjack (>= 1.0.12, < 2.0)
89
+ nenv (~> 0.1)
90
+ notiffany (~> 0.0)
91
+ pry (>= 0.9.12)
92
+ shellany (~> 0.0)
93
+ thor (>= 0.18.1)
94
+ guard-compat (1.2.1)
95
+ guard-rspec (4.7.3)
96
+ guard (~> 2.1)
97
+ guard-compat (~> 1.1)
98
+ rspec (>= 2.99.0, < 4.0)
99
+ i18n (1.8.2)
100
+ concurrent-ruby (~> 1.0)
101
+ listen (3.2.1)
102
+ rb-fsevent (~> 0.10, >= 0.10.3)
103
+ rb-inotify (~> 0.9, >= 0.9.10)
104
+ loofah (2.5.0)
105
+ crass (~> 1.0.2)
106
+ nokogiri (>= 1.5.9)
107
+ lumberjack (1.2.5)
108
+ mail (2.7.1)
109
+ mini_mime (>= 0.1.1)
110
+ marcel (0.3.3)
111
+ mimemagic (~> 0.3.2)
112
+ method_source (0.9.2)
113
+ mimemagic (0.3.5)
114
+ mini_mime (1.0.2)
115
+ mini_portile2 (2.4.0)
116
+ minitest (5.14.1)
117
+ nenv (0.3.0)
118
+ nio4r (2.5.2)
119
+ nokogiri (1.10.9)
120
+ mini_portile2 (~> 2.4.0)
121
+ notiffany (0.1.3)
122
+ nenv (~> 0.1)
123
+ shellany (~> 0.0)
124
+ parallel (1.19.1)
125
+ parser (2.7.1.3)
126
+ ast (~> 2.4.0)
127
+ pry (0.11.3)
128
+ coderay (~> 1.1.0)
129
+ method_source (~> 0.9.0)
130
+ pry-byebug (3.8.0)
131
+ byebug (~> 11.0)
132
+ pry (~> 0.10)
133
+ pry-state (0.1.10)
134
+ pry (>= 0.9.10, < 0.12.0)
135
+ rack (2.2.2)
136
+ rack-test (1.1.0)
137
+ rack (>= 1.0, < 3)
138
+ rails (6.0.3)
139
+ actioncable (= 6.0.3)
140
+ actionmailbox (= 6.0.3)
141
+ actionmailer (= 6.0.3)
142
+ actionpack (= 6.0.3)
143
+ actiontext (= 6.0.3)
144
+ actionview (= 6.0.3)
145
+ activejob (= 6.0.3)
146
+ activemodel (= 6.0.3)
147
+ activerecord (= 6.0.3)
148
+ activestorage (= 6.0.3)
149
+ activesupport (= 6.0.3)
150
+ bundler (>= 1.3.0)
151
+ railties (= 6.0.3)
152
+ sprockets-rails (>= 2.0.0)
153
+ rails-dom-testing (2.0.3)
154
+ activesupport (>= 4.2.0)
155
+ nokogiri (>= 1.6)
156
+ rails-html-sanitizer (1.3.0)
157
+ loofah (~> 2.3)
158
+ railties (6.0.3)
159
+ actionpack (= 6.0.3)
160
+ activesupport (= 6.0.3)
161
+ method_source
162
+ rake (>= 0.8.7)
163
+ thor (>= 0.20.3, < 2.0)
164
+ rainbow (3.0.0)
165
+ rake (13.0.1)
166
+ rb-fsevent (0.10.4)
167
+ rb-inotify (0.10.1)
168
+ ffi (~> 1.0)
169
+ rexml (3.2.4)
170
+ rspec (3.9.0)
171
+ rspec-core (~> 3.9.0)
172
+ rspec-expectations (~> 3.9.0)
173
+ rspec-mocks (~> 3.9.0)
174
+ rspec-core (3.9.2)
175
+ rspec-support (~> 3.9.3)
176
+ rspec-expectations (3.9.2)
177
+ diff-lcs (>= 1.2.0, < 2.0)
178
+ rspec-support (~> 3.9.0)
179
+ rspec-mocks (3.9.1)
180
+ diff-lcs (>= 1.2.0, < 2.0)
181
+ rspec-support (~> 3.9.0)
182
+ rspec-support (3.9.3)
183
+ rubocop (0.84.0)
184
+ parallel (~> 1.10)
185
+ parser (>= 2.7.0.1)
186
+ rainbow (>= 2.2.2, < 4.0)
187
+ rexml
188
+ rubocop-ast (>= 0.0.3)
189
+ ruby-progressbar (~> 1.7)
190
+ unicode-display_width (>= 1.4.0, < 2.0)
191
+ rubocop-ast (0.0.3)
192
+ parser (>= 2.7.0.1)
193
+ rubocop-performance (1.6.0)
194
+ rubocop (>= 0.71.0)
195
+ rubocop-rspec (1.39.0)
196
+ rubocop (>= 0.68.1)
197
+ ruby-progressbar (1.10.1)
198
+ shellany (0.0.1)
199
+ sprockets (4.0.0)
200
+ concurrent-ruby (~> 1.0)
201
+ rack (> 1, < 3)
202
+ sprockets-rails (3.2.1)
203
+ actionpack (>= 4.0)
204
+ activesupport (>= 4.0)
205
+ sprockets (>= 3.0.0)
206
+ thor (1.0.1)
207
+ thread_safe (0.3.6)
208
+ tzinfo (1.2.7)
209
+ thread_safe (~> 0.1)
210
+ unicode-display_width (1.7.0)
211
+ websocket-driver (0.7.2)
212
+ websocket-extensions (>= 0.1.0)
213
+ websocket-extensions (0.1.4)
214
+ zeitwerk (2.3.0)
215
+
216
+ PLATFORMS
217
+ ruby
218
+
219
+ DEPENDENCIES
220
+ appraisal
221
+ awesome_print
222
+ bundler (~> 2.0)
223
+ guard
224
+ guard-rspec
225
+ pry-byebug
226
+ pry-state
227
+ rails (~> 6.0.0)
228
+ rake
229
+ rspec (~> 3.9.0)
230
+ rspec-resembles_json_matchers!
231
+ rubocop
232
+ rubocop-performance
233
+ rubocop-rspec
234
+
235
+ BUNDLED WITH
236
+ 2.1.4