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,7 +1,8 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "active_support/core_ext/array/wrap"
2
4
 
3
5
  module RSpec::ResemblesJsonMatchers
4
-
5
6
  def resembles(expected)
6
7
  ResemblesMatcher.new(expected)
7
8
  end
@@ -18,11 +19,9 @@ module RSpec::ResemblesJsonMatchers
18
19
  candidates.detect { |candidate| candidate.can_match?(@expected) }
19
20
  end
20
21
 
21
- if candidate_class
22
- @candidate = candidate_class.new(expected)
23
- else
24
- fail "Could not find an acceptable resembles matcher for #{@expected.inspect}"
25
- end
22
+ fail "Could not find an acceptable resembles matcher for #{@expected.inspect}" unless candidate_class
23
+
24
+ @candidate = candidate_class.new(expected)
26
25
  end
27
26
 
28
27
  def description
@@ -31,29 +30,22 @@ module RSpec::ResemblesJsonMatchers
31
30
 
32
31
  def matches?(actual)
33
32
  @actual = actual
34
- if @candidate
35
- @candidate.matches?(actual)
36
- end
33
+ @candidate&.matches?(actual)
37
34
  end
38
35
 
39
36
  def failure_message(negated: false)
40
- "expected #{@actual.inspect} to #{negated ? "not " : ""}#{description}"
37
+ "expected #{@actual.inspect} to #{negated ? 'not ' : ''}#{description}"
41
38
  end
42
39
 
43
40
  def negative_failure_message
44
41
  failure_message(negated: true)
45
42
  end
46
43
 
47
- def candidates
48
- end
44
+ def candidates; end
49
45
  end
50
46
 
51
47
  class ResemblesAllOfMatcher
52
-
53
48
  end
54
49
 
55
-
56
-
57
50
  RSpec.configure { |c| c.include self }
58
51
  end
59
-
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
 
2
3
  module RSpec::ResemblesJsonMatchers
3
4
  class ResemblesNilMatcher
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
 
2
3
  module RSpec::ResemblesJsonMatchers
3
4
  class ResemblesNumericMatcher
@@ -25,7 +26,7 @@ module RSpec::ResemblesJsonMatchers
25
26
  @expected
26
27
  end
27
28
 
28
- def to_json
29
+ def to_json(*_args)
29
30
  @expected
30
31
  end
31
32
 
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
 
2
3
  module RSpec::ResemblesJsonMatchers
3
4
  class ResemblesRouteMatcher
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
 
2
3
  module RSpec::ResemblesJsonMatchers
3
4
  class ResemblesStringMatcher
@@ -1,8 +1,10 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module RSpec
2
4
  module ResemblesJsonMatchers
3
5
  module StringIndent
4
6
  def indent!(amount, indent_string = nil, indent_empty_lines = false)
5
- indent_string = indent_string || self[/^[ \t]/] || ' '
7
+ indent_string = indent_string || self[/^[ \t]/] || " "
6
8
  re = indent_empty_lines ? /^/ : /^(?!$)/
7
9
  gsub!(re, indent_string * amount)
8
10
  end
@@ -18,5 +20,5 @@ end
18
20
  begin
19
21
  require "active_support/core_ext/string/indent" # indent
20
22
  rescue LoadError
21
- String.send(:include, RSpec::ResemblesJsonMatchers::StringIndent)
23
+ String.include RSpec::ResemblesJsonMatchers::StringIndent
22
24
  end
@@ -1,5 +1,7 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Rspec
2
4
  module ResemblesJsonMatchers
3
- VERSION = "0.9.0"
5
+ VERSION = "0.9.1"
4
6
  end
5
7
  end
@@ -1,7 +1,8 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
1
+ # frozen_string_literal: true
2
+
3
+ lib = File.expand_path("lib", __dir__)
3
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'rspec/resembles_json_matchers/version'
5
+ require "rspec/resembles_json_matchers/version"
5
6
 
6
7
  Gem::Specification.new do |spec|
7
8
  spec.name = "rspec-resembles_json_matchers"
@@ -9,7 +10,7 @@ Gem::Specification.new do |spec|
9
10
  spec.authors = ["Paul Sadauskas"]
10
11
  spec.email = ["psadauskas@gmail.com"]
11
12
 
12
- spec.summary = %q{Helpful matchers for comparing JSON documents.}
13
+ spec.summary = "Helpful matchers for comparing JSON documents."
13
14
  spec.homepage = "https://github.com/paul/rspec-resembles_json_matchers"
14
15
 
15
16
  # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
@@ -25,18 +26,22 @@ Gem::Specification.new do |spec|
25
26
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
26
27
  spec.require_paths = ["lib"]
27
28
 
28
- spec.add_development_dependency "bundler", "~> 1.11"
29
+ spec.add_development_dependency "bundler", "~> 2.0"
29
30
  spec.add_development_dependency "rake"
30
31
  spec.add_development_dependency "rspec", "~> 3.0"
32
+
31
33
  spec.add_development_dependency "appraisal"
34
+ spec.add_development_dependency "awesome_print"
32
35
  spec.add_development_dependency "guard"
33
36
  spec.add_development_dependency "guard-rspec"
34
37
  spec.add_development_dependency "pry-byebug"
35
38
  spec.add_development_dependency "pry-state"
36
- spec.add_development_dependency "awesome_print"
39
+ spec.add_development_dependency "rubocop"
40
+ spec.add_development_dependency "rubocop-performance"
41
+ spec.add_development_dependency "rubocop-rspec"
37
42
 
38
- spec.add_runtime_dependency "rspec", ">= 2.0", "< 4.0.0.a"
39
- spec.add_runtime_dependency "rspec-expectations", ">= 2.0", "< 4.0.0.a"
40
- spec.add_runtime_dependency "rspec-support", ">= 2.0", "< 4.0.0.a"
41
43
  spec.add_runtime_dependency "activesupport", ">= 3.0" # For core extensions
44
+ spec.add_runtime_dependency "rspec", ">= 3.0", "< 4.0.0.a"
45
+ spec.add_runtime_dependency "rspec-expectations", ">= 3.0", "< 4.0.0.a"
46
+ spec.add_runtime_dependency "rspec-support", ">= 3.0", "< 4.0.0.a"
42
47
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-resembles_json_matchers
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Sadauskas
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-11-12 00:00:00.000000000 Z
11
+ date: 2020-05-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.11'
19
+ version: '2.0'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '1.11'
26
+ version: '2.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -66,6 +66,20 @@ dependencies:
66
66
  - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: awesome_print
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
69
83
  - !ruby/object:Gem::Dependency
70
84
  name: guard
71
85
  requirement: !ruby/object:Gem::Requirement
@@ -123,7 +137,7 @@ dependencies:
123
137
  - !ruby/object:Gem::Version
124
138
  version: '0'
125
139
  - !ruby/object:Gem::Dependency
126
- name: awesome_print
140
+ name: rubocop
127
141
  requirement: !ruby/object:Gem::Requirement
128
142
  requirements:
129
143
  - - ">="
@@ -137,32 +151,54 @@ dependencies:
137
151
  - !ruby/object:Gem::Version
138
152
  version: '0'
139
153
  - !ruby/object:Gem::Dependency
140
- name: rspec
154
+ name: rubocop-performance
141
155
  requirement: !ruby/object:Gem::Requirement
142
156
  requirements:
143
157
  - - ">="
144
158
  - !ruby/object:Gem::Version
145
- version: '2.0'
146
- - - "<"
159
+ version: '0'
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
147
165
  - !ruby/object:Gem::Version
148
- version: 4.0.0.a
149
- type: :runtime
166
+ version: '0'
167
+ - !ruby/object:Gem::Dependency
168
+ name: rubocop-rspec
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - ">="
172
+ - !ruby/object:Gem::Version
173
+ version: '0'
174
+ type: :development
150
175
  prerelease: false
151
176
  version_requirements: !ruby/object:Gem::Requirement
152
177
  requirements:
153
178
  - - ">="
154
179
  - !ruby/object:Gem::Version
155
- version: '2.0'
156
- - - "<"
180
+ version: '0'
181
+ - !ruby/object:Gem::Dependency
182
+ name: activesupport
183
+ requirement: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - ">="
157
186
  - !ruby/object:Gem::Version
158
- version: 4.0.0.a
187
+ version: '3.0'
188
+ type: :runtime
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - ">="
193
+ - !ruby/object:Gem::Version
194
+ version: '3.0'
159
195
  - !ruby/object:Gem::Dependency
160
- name: rspec-expectations
196
+ name: rspec
161
197
  requirement: !ruby/object:Gem::Requirement
162
198
  requirements:
163
199
  - - ">="
164
200
  - !ruby/object:Gem::Version
165
- version: '2.0'
201
+ version: '3.0'
166
202
  - - "<"
167
203
  - !ruby/object:Gem::Version
168
204
  version: 4.0.0.a
@@ -172,17 +208,17 @@ dependencies:
172
208
  requirements:
173
209
  - - ">="
174
210
  - !ruby/object:Gem::Version
175
- version: '2.0'
211
+ version: '3.0'
176
212
  - - "<"
177
213
  - !ruby/object:Gem::Version
178
214
  version: 4.0.0.a
179
215
  - !ruby/object:Gem::Dependency
180
- name: rspec-support
216
+ name: rspec-expectations
181
217
  requirement: !ruby/object:Gem::Requirement
182
218
  requirements:
183
219
  - - ">="
184
220
  - !ruby/object:Gem::Version
185
- version: '2.0'
221
+ version: '3.0'
186
222
  - - "<"
187
223
  - !ruby/object:Gem::Version
188
224
  version: 4.0.0.a
@@ -192,17 +228,20 @@ dependencies:
192
228
  requirements:
193
229
  - - ">="
194
230
  - !ruby/object:Gem::Version
195
- version: '2.0'
231
+ version: '3.0'
196
232
  - - "<"
197
233
  - !ruby/object:Gem::Version
198
234
  version: 4.0.0.a
199
235
  - !ruby/object:Gem::Dependency
200
- name: activesupport
236
+ name: rspec-support
201
237
  requirement: !ruby/object:Gem::Requirement
202
238
  requirements:
203
239
  - - ">="
204
240
  - !ruby/object:Gem::Version
205
241
  version: '3.0'
242
+ - - "<"
243
+ - !ruby/object:Gem::Version
244
+ version: 4.0.0.a
206
245
  type: :runtime
207
246
  prerelease: false
208
247
  version_requirements: !ruby/object:Gem::Requirement
@@ -210,6 +249,9 @@ dependencies:
210
249
  - - ">="
211
250
  - !ruby/object:Gem::Version
212
251
  version: '3.0'
252
+ - - "<"
253
+ - !ruby/object:Gem::Version
254
+ version: 4.0.0.a
213
255
  description:
214
256
  email:
215
257
  - psadauskas@gmail.com
@@ -225,15 +267,16 @@ files:
225
267
  - Changelog.md
226
268
  - Gemfile
227
269
  - Guardfile
270
+ - LICENSE.txt
228
271
  - README.md
229
272
  - Rakefile
230
273
  - bin/rspec
231
274
  - examples/example_spec.rb
232
275
  - gemfiles/.bundle/config
233
- - gemfiles/rails_42.gemfile
234
- - gemfiles/rails_42.gemfile.lock
235
276
  - gemfiles/rails_5.gemfile
236
277
  - gemfiles/rails_5.gemfile.lock
278
+ - gemfiles/rails_6.gemfile
279
+ - gemfiles/rails_6.gemfile.lock
237
280
  - lib/rspec/resembles_json_matchers.rb
238
281
  - lib/rspec/resembles_json_matchers/attribute_differ.rb
239
282
  - lib/rspec/resembles_json_matchers/attribute_matcher.rb
@@ -272,8 +315,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
272
315
  - !ruby/object:Gem::Version
273
316
  version: '0'
274
317
  requirements: []
275
- rubyforge_project:
276
- rubygems_version: 2.7.6
318
+ rubygems_version: 3.1.2
277
319
  signing_key:
278
320
  specification_version: 4
279
321
  summary: Helpful matchers for comparing JSON documents.
@@ -1,183 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- rspec-resembles_json_matchers (0.7.4)
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)
9
-
10
- GEM
11
- remote: https://rubygems.org/
12
- specs:
13
- actionmailer (4.2.10)
14
- actionpack (= 4.2.10)
15
- actionview (= 4.2.10)
16
- activejob (= 4.2.10)
17
- mail (~> 2.5, >= 2.5.4)
18
- rails-dom-testing (~> 1.0, >= 1.0.5)
19
- actionpack (4.2.10)
20
- actionview (= 4.2.10)
21
- activesupport (= 4.2.10)
22
- rack (~> 1.6)
23
- rack-test (~> 0.6.2)
24
- rails-dom-testing (~> 1.0, >= 1.0.5)
25
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
26
- actionview (4.2.10)
27
- activesupport (= 4.2.10)
28
- builder (~> 3.1)
29
- erubis (~> 2.7.0)
30
- rails-dom-testing (~> 1.0, >= 1.0.5)
31
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
32
- activejob (4.2.10)
33
- activesupport (= 4.2.10)
34
- globalid (>= 0.3.0)
35
- activemodel (4.2.10)
36
- activesupport (= 4.2.10)
37
- builder (~> 3.1)
38
- activerecord (4.2.10)
39
- activemodel (= 4.2.10)
40
- activesupport (= 4.2.10)
41
- arel (~> 6.0)
42
- activesupport (4.2.10)
43
- i18n (~> 0.7)
44
- minitest (~> 5.1)
45
- thread_safe (~> 0.3, >= 0.3.4)
46
- tzinfo (~> 1.1)
47
- appraisal (2.2.0)
48
- bundler
49
- rake
50
- thor (>= 0.14.0)
51
- arel (6.0.4)
52
- awesome_print (1.8.0)
53
- builder (3.2.3)
54
- byebug (9.1.0)
55
- coderay (1.1.2)
56
- concurrent-ruby (1.0.5)
57
- crass (1.0.3)
58
- diff-lcs (1.3)
59
- erubis (2.7.0)
60
- ffi (1.9.18)
61
- formatador (0.2.5)
62
- globalid (0.4.1)
63
- activesupport (>= 4.2.0)
64
- guard (2.14.1)
65
- formatador (>= 0.2.4)
66
- listen (>= 2.7, < 4.0)
67
- lumberjack (~> 1.0)
68
- nenv (~> 0.1)
69
- notiffany (~> 0.0)
70
- pry (>= 0.9.12)
71
- shellany (~> 0.0)
72
- thor (>= 0.18.1)
73
- guard-compat (1.2.1)
74
- guard-rspec (4.7.3)
75
- guard (~> 2.1)
76
- guard-compat (~> 1.1)
77
- rspec (>= 2.99.0, < 4.0)
78
- i18n (0.9.1)
79
- concurrent-ruby (~> 1.0)
80
- listen (3.1.5)
81
- rb-fsevent (~> 0.9, >= 0.9.4)
82
- rb-inotify (~> 0.9, >= 0.9.7)
83
- ruby_dep (~> 1.2)
84
- loofah (2.1.1)
85
- crass (~> 1.0.2)
86
- nokogiri (>= 1.5.9)
87
- lumberjack (1.0.12)
88
- mail (2.7.0)
89
- mini_mime (>= 0.1.1)
90
- method_source (0.9.0)
91
- mini_mime (1.0.0)
92
- mini_portile2 (2.3.0)
93
- minitest (5.10.3)
94
- nenv (0.3.0)
95
- nokogiri (1.8.1)
96
- mini_portile2 (~> 2.3.0)
97
- notiffany (0.1.1)
98
- nenv (~> 0.1)
99
- shellany (~> 0.0)
100
- pry (0.11.3)
101
- coderay (~> 1.1.0)
102
- method_source (~> 0.9.0)
103
- pry-byebug (3.5.1)
104
- byebug (~> 9.1)
105
- pry (~> 0.10)
106
- pry-state (0.1.10)
107
- pry (>= 0.9.10, < 0.12.0)
108
- rack (1.6.8)
109
- rack-test (0.6.3)
110
- rack (>= 1.0)
111
- rails (4.2.10)
112
- actionmailer (= 4.2.10)
113
- actionpack (= 4.2.10)
114
- actionview (= 4.2.10)
115
- activejob (= 4.2.10)
116
- activemodel (= 4.2.10)
117
- activerecord (= 4.2.10)
118
- activesupport (= 4.2.10)
119
- bundler (>= 1.3.0, < 2.0)
120
- railties (= 4.2.10)
121
- sprockets-rails
122
- rails-deprecated_sanitizer (1.0.3)
123
- activesupport (>= 4.2.0.alpha)
124
- rails-dom-testing (1.0.9)
125
- activesupport (>= 4.2.0, < 5.0)
126
- nokogiri (~> 1.6)
127
- rails-deprecated_sanitizer (>= 1.0.1)
128
- rails-html-sanitizer (1.0.3)
129
- loofah (~> 2.0)
130
- railties (4.2.10)
131
- actionpack (= 4.2.10)
132
- activesupport (= 4.2.10)
133
- rake (>= 0.8.7)
134
- thor (>= 0.18.1, < 2.0)
135
- rake (12.3.0)
136
- rb-fsevent (0.10.2)
137
- rb-inotify (0.9.10)
138
- ffi (>= 0.5.0, < 2)
139
- rspec (3.7.0)
140
- rspec-core (~> 3.7.0)
141
- rspec-expectations (~> 3.7.0)
142
- rspec-mocks (~> 3.7.0)
143
- rspec-core (3.7.0)
144
- rspec-support (~> 3.7.0)
145
- rspec-expectations (3.7.0)
146
- diff-lcs (>= 1.2.0, < 2.0)
147
- rspec-support (~> 3.7.0)
148
- rspec-mocks (3.7.0)
149
- diff-lcs (>= 1.2.0, < 2.0)
150
- rspec-support (~> 3.7.0)
151
- rspec-support (3.7.0)
152
- ruby_dep (1.5.0)
153
- shellany (0.0.1)
154
- sprockets (3.7.1)
155
- concurrent-ruby (~> 1.0)
156
- rack (> 1, < 3)
157
- sprockets-rails (3.2.1)
158
- actionpack (>= 4.0)
159
- activesupport (>= 4.0)
160
- sprockets (>= 3.0.0)
161
- thor (0.20.0)
162
- thread_safe (0.3.6)
163
- tzinfo (1.2.4)
164
- thread_safe (~> 0.1)
165
-
166
- PLATFORMS
167
- ruby
168
-
169
- DEPENDENCIES
170
- appraisal
171
- awesome_print
172
- bundler (~> 1.11)
173
- guard
174
- guard-rspec
175
- pry-byebug
176
- pry-state
177
- rails (~> 4.2)
178
- rake
179
- rspec (~> 3.4)
180
- rspec-resembles_json_matchers!
181
-
182
- BUNDLED WITH
183
- 1.16.1