yellow-api-wrapper 0.0.1

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.
Files changed (64) hide show
  1. checksums.yaml +7 -0
  2. data/.autotest +1 -0
  3. data/.gitignore +42 -0
  4. data/.travis.yml +29 -0
  5. data/Appraisals +30 -0
  6. data/Gemfile +5 -0
  7. data/LICENSE.md +20 -0
  8. data/README.md +54 -0
  9. data/Rakefile +20 -0
  10. data/gemfiles/rails_3.0.gemfile +8 -0
  11. data/gemfiles/rails_3.0.gemfile.lock +150 -0
  12. data/gemfiles/rails_3.1.gemfile +8 -0
  13. data/gemfiles/rails_3.1.gemfile.lock +161 -0
  14. data/gemfiles/rails_3.2.gemfile +8 -0
  15. data/gemfiles/rails_3.2.gemfile.lock +159 -0
  16. data/gemfiles/rails_4.0.gemfile +8 -0
  17. data/gemfiles/rails_4.0.gemfile.lock +147 -0
  18. data/gemfiles/rails_4.1.gemfile +8 -0
  19. data/gemfiles/rails_4.1.gemfile.lock +151 -0
  20. data/gemfiles/rails_4.2.gemfile +8 -0
  21. data/gemfiles/rails_4.2.gemfile.lock +176 -0
  22. data/gemfiles/rails_5.0.gemfile +8 -0
  23. data/gemfiles/rails_5.0.gemfile.lock +185 -0
  24. data/gemfiles/ruby.gemfile +7 -0
  25. data/gemfiles/ruby.gemfile.lock +96 -0
  26. data/lib/yellow_api.rb +25 -0
  27. data/lib/yellow_api/client.rb +33 -0
  28. data/lib/yellow_api/client/connection.rb +22 -0
  29. data/lib/yellow_api/client/find_business.rb +31 -0
  30. data/lib/yellow_api/client/find_dealer.rb +27 -0
  31. data/lib/yellow_api/client/get_business_details.rb +67 -0
  32. data/lib/yellow_api/client/get_type_ahead.rb +28 -0
  33. data/lib/yellow_api/client/request.rb +24 -0
  34. data/lib/yellow_api/config.rb +71 -0
  35. data/lib/yellow_api/version.rb +3 -0
  36. data/spec/fixtures/find_business.json +1 -0
  37. data/spec/fixtures/find_dealer.json +1 -0
  38. data/spec/fixtures/get_business_details.json +1 -0
  39. data/spec/fixtures/get_type_ahead.json +1 -0
  40. data/spec/fixtures/vcr_cassettes/yellow_api/client/find_business/find_business.yml +207 -0
  41. data/spec/fixtures/vcr_cassettes/yellow_api/client/find_business/find_business/returns_the_correct_format_for_businesses.yml +209 -0
  42. data/spec/fixtures/vcr_cassettes/yellow_api/client/find_business/find_business/returns_the_correct_number_of_businesses.yml +209 -0
  43. data/spec/fixtures/vcr_cassettes/yellow_api/client/find_business/find_business/with_lat_lon_where_returns_the_correct_format_for_businesses.yml +178 -0
  44. data/spec/fixtures/vcr_cassettes/yellow_api/client/find_business/find_business/with_lat_lon_where_returns_the_correct_number_of_businesses.yml +178 -0
  45. data/spec/fixtures/vcr_cassettes/yellow_api/client/find_business/find_business/with_options_gets_the_language.yml +738 -0
  46. data/spec/fixtures/vcr_cassettes/yellow_api/client/find_business/find_business/with_options_returns_the_correct_number_of_businesses.yml +81 -0
  47. data/spec/fixtures/vcr_cassettes/yellow_api/client/find_business/find_business/with_special_characters_parses_the_special_characters.yml +213 -0
  48. data/spec/fixtures/vcr_cassettes/yellow_api/client/find_business/find_business/with_special_characters_returns_the_correct_format_for_businesses.yml +211 -0
  49. data/spec/fixtures/vcr_cassettes/yellow_api/client/find_business/find_business/with_special_characters_returns_the_correct_number_of_businesses.yml +213 -0
  50. data/spec/fixtures/vcr_cassettes/yellow_api/client/find_dealer/find_dealer.yml +45 -0
  51. data/spec/fixtures/vcr_cassettes/yellow_api/client/find_dealer/find_dealer/should_return_the_correct_parent_business.yml +43 -0
  52. data/spec/fixtures/vcr_cassettes/yellow_api/client/get_business_details/get_business_details/returns_the_correct_business.yml +52 -0
  53. data/spec/fixtures/vcr_cassettes/yellow_api/client/get_business_details/get_business_details/returns_the_correct_format.yml +52 -0
  54. data/spec/fixtures/vcr_cassettes/yellow_api/client/get_type_ahead/get_type_ahead.yml +50 -0
  55. data/spec/fixtures/vcr_cassettes/yellow_api/client/get_type_ahead/get_type_ahead/should_return_suggestions.yml +50 -0
  56. data/spec/helper.rb +45 -0
  57. data/spec/yellow_api/client_spec.rb +15 -0
  58. data/spec/yellow_api/find_business_spec.rb +89 -0
  59. data/spec/yellow_api/find_dealer_spec.rb +20 -0
  60. data/spec/yellow_api/get_business_details_spec.rb +21 -0
  61. data/spec/yellow_api/get_type_ahead_spec.rb +19 -0
  62. data/spec/yellow_api_spec.rb +9 -0
  63. data/yellow_api.gemspec +29 -0
  64. metadata +289 -0
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "http://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "rails", "4.2.6"
7
+
8
+ gemspec :path => "../"
@@ -0,0 +1,176 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ yellow-api-wrapper (0.0.5)
5
+ activesupport (>= 3.0.0)
6
+ faraday_middleware (>= 0.7.0)
7
+ rash (~> 0.4.0)
8
+ uuid (~> 2.3.5)
9
+
10
+ GEM
11
+ remote: http://rubygems.org/
12
+ specs:
13
+ actionmailer (4.2.6)
14
+ actionpack (= 4.2.6)
15
+ actionview (= 4.2.6)
16
+ activejob (= 4.2.6)
17
+ mail (~> 2.5, >= 2.5.4)
18
+ rails-dom-testing (~> 1.0, >= 1.0.5)
19
+ actionpack (4.2.6)
20
+ actionview (= 4.2.6)
21
+ activesupport (= 4.2.6)
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.6)
27
+ activesupport (= 4.2.6)
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.2)
32
+ activejob (4.2.6)
33
+ activesupport (= 4.2.6)
34
+ globalid (>= 0.3.0)
35
+ activemodel (4.2.6)
36
+ activesupport (= 4.2.6)
37
+ builder (~> 3.1)
38
+ activerecord (4.2.6)
39
+ activemodel (= 4.2.6)
40
+ activesupport (= 4.2.6)
41
+ arel (~> 6.0)
42
+ activesupport (4.2.6)
43
+ i18n (~> 0.7)
44
+ json (~> 1.7, >= 1.7.7)
45
+ minitest (~> 5.1)
46
+ thread_safe (~> 0.3, >= 0.3.4)
47
+ tzinfo (~> 1.1)
48
+ addressable (2.4.0)
49
+ appraisal (2.1.0)
50
+ bundler
51
+ rake
52
+ thor (>= 0.14.0)
53
+ arel (6.0.3)
54
+ builder (3.2.2)
55
+ coderay (1.1.1)
56
+ concurrent-ruby (1.0.2)
57
+ crack (0.4.3)
58
+ safe_yaml (~> 1.0.0)
59
+ diff-lcs (1.2.5)
60
+ docile (1.1.5)
61
+ erubis (2.7.0)
62
+ faraday (0.9.2)
63
+ multipart-post (>= 1.2, < 3)
64
+ faraday_middleware (0.10.0)
65
+ faraday (>= 0.7.4, < 0.10)
66
+ globalid (0.3.6)
67
+ activesupport (>= 4.1.0)
68
+ hashie (2.0.5)
69
+ i18n (0.7.0)
70
+ json (1.8.3)
71
+ loofah (2.0.3)
72
+ nokogiri (>= 1.5.9)
73
+ macaddr (1.7.1)
74
+ systemu (~> 2.6.2)
75
+ mail (2.6.4)
76
+ mime-types (>= 1.16, < 4)
77
+ method_source (0.8.2)
78
+ mime-types (3.0)
79
+ mime-types-data (~> 3.2015)
80
+ mime-types-data (3.2016.0221)
81
+ mini_portile2 (2.0.0)
82
+ minitest (5.8.4)
83
+ multipart-post (2.0.0)
84
+ nokogiri (1.6.7.2)
85
+ mini_portile2 (~> 2.0.0.rc2)
86
+ pry (0.10.3)
87
+ coderay (~> 1.1.0)
88
+ method_source (~> 0.8.1)
89
+ slop (~> 3.4)
90
+ rack (1.6.4)
91
+ rack-test (0.6.3)
92
+ rack (>= 1.0)
93
+ rails (4.2.6)
94
+ actionmailer (= 4.2.6)
95
+ actionpack (= 4.2.6)
96
+ actionview (= 4.2.6)
97
+ activejob (= 4.2.6)
98
+ activemodel (= 4.2.6)
99
+ activerecord (= 4.2.6)
100
+ activesupport (= 4.2.6)
101
+ bundler (>= 1.3.0, < 2.0)
102
+ railties (= 4.2.6)
103
+ sprockets-rails
104
+ rails-deprecated_sanitizer (1.0.3)
105
+ activesupport (>= 4.2.0.alpha)
106
+ rails-dom-testing (1.0.7)
107
+ activesupport (>= 4.2.0.beta, < 5.0)
108
+ nokogiri (~> 1.6.0)
109
+ rails-deprecated_sanitizer (>= 1.0.1)
110
+ rails-html-sanitizer (1.0.3)
111
+ loofah (~> 2.0)
112
+ railties (4.2.6)
113
+ actionpack (= 4.2.6)
114
+ activesupport (= 4.2.6)
115
+ rake (>= 0.8.7)
116
+ thor (>= 0.18.1, < 2.0)
117
+ rake (0.9.6)
118
+ rash (0.4.0)
119
+ hashie (~> 2.0.0)
120
+ rspec (3.4.0)
121
+ rspec-core (~> 3.4.0)
122
+ rspec-expectations (~> 3.4.0)
123
+ rspec-mocks (~> 3.4.0)
124
+ rspec-core (3.4.4)
125
+ rspec-support (~> 3.4.0)
126
+ rspec-expectations (3.4.0)
127
+ diff-lcs (>= 1.2.0, < 2.0)
128
+ rspec-support (~> 3.4.0)
129
+ rspec-mocks (3.4.1)
130
+ diff-lcs (>= 1.2.0, < 2.0)
131
+ rspec-support (~> 3.4.0)
132
+ rspec-support (3.4.1)
133
+ safe_yaml (1.0.4)
134
+ simplecov (0.11.2)
135
+ docile (~> 1.1.0)
136
+ json (~> 1.8)
137
+ simplecov-html (~> 0.10.0)
138
+ simplecov-html (0.10.0)
139
+ slop (3.6.0)
140
+ sprockets (3.6.0)
141
+ concurrent-ruby (~> 1.0)
142
+ rack (> 1, < 3)
143
+ sprockets-rails (3.0.4)
144
+ actionpack (>= 4.0)
145
+ activesupport (>= 4.0)
146
+ sprockets (>= 3.0.0)
147
+ systemu (2.6.5)
148
+ thor (0.19.1)
149
+ thread_safe (0.3.5)
150
+ tzinfo (1.2.2)
151
+ thread_safe (~> 0.1)
152
+ uuid (2.3.8)
153
+ macaddr (~> 1.0)
154
+ vcr (3.0.1)
155
+ webmock (1.8.11)
156
+ addressable (>= 2.2.7)
157
+ crack (>= 0.1.7)
158
+ yard (0.8.7.6)
159
+
160
+ PLATFORMS
161
+ ruby
162
+
163
+ DEPENDENCIES
164
+ appraisal
165
+ pry (~> 0.10.3)
166
+ rails (= 4.2.6)
167
+ rake (~> 0.9)
168
+ rspec (~> 3.4)
169
+ simplecov (>= 0.5.0)
170
+ vcr (~> 3.0)
171
+ webmock (~> 1.8.0)
172
+ yard (~> 0.7)
173
+ yellow-api-wrapper!
174
+
175
+ BUNDLED WITH
176
+ 1.12.1
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "http://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "rails", "5.0.0.beta4"
7
+
8
+ gemspec :path => "../"
@@ -0,0 +1,185 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ yellow-api-wrapper (0.0.5)
5
+ activesupport (>= 3.0.0)
6
+ faraday_middleware (>= 0.7.0)
7
+ rash (~> 0.4.0)
8
+ uuid (~> 2.3.5)
9
+
10
+ GEM
11
+ remote: http://rubygems.org/
12
+ specs:
13
+ actioncable (5.0.0.beta4)
14
+ actionpack (= 5.0.0.beta4)
15
+ nio4r (~> 1.2)
16
+ websocket-driver (~> 0.6.1)
17
+ actionmailer (5.0.0.beta4)
18
+ actionpack (= 5.0.0.beta4)
19
+ actionview (= 5.0.0.beta4)
20
+ activejob (= 5.0.0.beta4)
21
+ mail (~> 2.5, >= 2.5.4)
22
+ rails-dom-testing (~> 1.0, >= 1.0.5)
23
+ actionpack (5.0.0.beta4)
24
+ actionview (= 5.0.0.beta4)
25
+ activesupport (= 5.0.0.beta4)
26
+ rack (~> 2.x)
27
+ rack-test (~> 0.6.3)
28
+ rails-dom-testing (~> 1.0, >= 1.0.5)
29
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
30
+ actionview (5.0.0.beta4)
31
+ activesupport (= 5.0.0.beta4)
32
+ builder (~> 3.1)
33
+ erubis (~> 2.7.0)
34
+ rails-dom-testing (~> 1.0, >= 1.0.5)
35
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
36
+ activejob (5.0.0.beta4)
37
+ activesupport (= 5.0.0.beta4)
38
+ globalid (>= 0.3.6)
39
+ activemodel (5.0.0.beta4)
40
+ activesupport (= 5.0.0.beta4)
41
+ activerecord (5.0.0.beta4)
42
+ activemodel (= 5.0.0.beta4)
43
+ activesupport (= 5.0.0.beta4)
44
+ arel (~> 7.0)
45
+ activesupport (5.0.0.beta4)
46
+ concurrent-ruby (~> 1.0)
47
+ i18n (~> 0.7)
48
+ minitest (~> 5.1)
49
+ tzinfo (~> 1.1)
50
+ addressable (2.4.0)
51
+ appraisal (2.1.0)
52
+ bundler
53
+ rake
54
+ thor (>= 0.14.0)
55
+ arel (7.0.0)
56
+ builder (3.2.2)
57
+ coderay (1.1.1)
58
+ concurrent-ruby (1.0.2)
59
+ crack (0.4.3)
60
+ safe_yaml (~> 1.0.0)
61
+ diff-lcs (1.2.5)
62
+ docile (1.1.5)
63
+ erubis (2.7.0)
64
+ faraday (0.9.2)
65
+ multipart-post (>= 1.2, < 3)
66
+ faraday_middleware (0.10.0)
67
+ faraday (>= 0.7.4, < 0.10)
68
+ globalid (0.3.6)
69
+ activesupport (>= 4.1.0)
70
+ hashie (2.0.5)
71
+ i18n (0.7.0)
72
+ json (1.8.3)
73
+ loofah (2.0.3)
74
+ nokogiri (>= 1.5.9)
75
+ macaddr (1.7.1)
76
+ systemu (~> 2.6.2)
77
+ mail (2.6.4)
78
+ mime-types (>= 1.16, < 4)
79
+ method_source (0.8.2)
80
+ mime-types (3.0)
81
+ mime-types-data (~> 3.2015)
82
+ mime-types-data (3.2016.0221)
83
+ mini_portile2 (2.0.0)
84
+ minitest (5.8.4)
85
+ multipart-post (2.0.0)
86
+ nio4r (1.2.1)
87
+ nokogiri (1.6.7.2)
88
+ mini_portile2 (~> 2.0.0.rc2)
89
+ pry (0.10.3)
90
+ coderay (~> 1.1.0)
91
+ method_source (~> 0.8.1)
92
+ slop (~> 3.4)
93
+ rack (2.0.0.alpha)
94
+ json
95
+ rack-test (0.6.3)
96
+ rack (>= 1.0)
97
+ rails (5.0.0.beta4)
98
+ actioncable (= 5.0.0.beta4)
99
+ actionmailer (= 5.0.0.beta4)
100
+ actionpack (= 5.0.0.beta4)
101
+ actionview (= 5.0.0.beta4)
102
+ activejob (= 5.0.0.beta4)
103
+ activemodel (= 5.0.0.beta4)
104
+ activerecord (= 5.0.0.beta4)
105
+ activesupport (= 5.0.0.beta4)
106
+ bundler (>= 1.3.0, < 2.0)
107
+ railties (= 5.0.0.beta4)
108
+ sprockets-rails (>= 2.0.0)
109
+ rails-deprecated_sanitizer (1.0.3)
110
+ activesupport (>= 4.2.0.alpha)
111
+ rails-dom-testing (1.0.7)
112
+ activesupport (>= 4.2.0.beta, < 5.0)
113
+ nokogiri (~> 1.6.0)
114
+ rails-deprecated_sanitizer (>= 1.0.1)
115
+ rails-html-sanitizer (1.0.3)
116
+ loofah (~> 2.0)
117
+ railties (5.0.0.beta4)
118
+ actionpack (= 5.0.0.beta4)
119
+ activesupport (= 5.0.0.beta4)
120
+ method_source
121
+ rake (>= 0.8.7)
122
+ thor (>= 0.18.1, < 2.0)
123
+ rake (0.9.6)
124
+ rash (0.4.0)
125
+ hashie (~> 2.0.0)
126
+ rspec (3.4.0)
127
+ rspec-core (~> 3.4.0)
128
+ rspec-expectations (~> 3.4.0)
129
+ rspec-mocks (~> 3.4.0)
130
+ rspec-core (3.4.4)
131
+ rspec-support (~> 3.4.0)
132
+ rspec-expectations (3.4.0)
133
+ diff-lcs (>= 1.2.0, < 2.0)
134
+ rspec-support (~> 3.4.0)
135
+ rspec-mocks (3.4.1)
136
+ diff-lcs (>= 1.2.0, < 2.0)
137
+ rspec-support (~> 3.4.0)
138
+ rspec-support (3.4.1)
139
+ safe_yaml (1.0.4)
140
+ simplecov (0.11.2)
141
+ docile (~> 1.1.0)
142
+ json (~> 1.8)
143
+ simplecov-html (~> 0.10.0)
144
+ simplecov-html (0.10.0)
145
+ slop (3.6.0)
146
+ sprockets (3.6.0)
147
+ concurrent-ruby (~> 1.0)
148
+ rack (> 1, < 3)
149
+ sprockets-rails (3.0.4)
150
+ actionpack (>= 4.0)
151
+ activesupport (>= 4.0)
152
+ sprockets (>= 3.0.0)
153
+ systemu (2.6.5)
154
+ thor (0.19.1)
155
+ thread_safe (0.3.5)
156
+ tzinfo (1.2.2)
157
+ thread_safe (~> 0.1)
158
+ uuid (2.3.8)
159
+ macaddr (~> 1.0)
160
+ vcr (3.0.1)
161
+ webmock (1.8.11)
162
+ addressable (>= 2.2.7)
163
+ crack (>= 0.1.7)
164
+ websocket-driver (0.6.3)
165
+ websocket-extensions (>= 0.1.0)
166
+ websocket-extensions (0.1.2)
167
+ yard (0.8.7.6)
168
+
169
+ PLATFORMS
170
+ ruby
171
+
172
+ DEPENDENCIES
173
+ appraisal
174
+ pry (~> 0.10.3)
175
+ rails (= 5.0.0.beta4)
176
+ rake (~> 0.9)
177
+ rspec (~> 3.4)
178
+ simplecov (>= 0.5.0)
179
+ vcr (~> 3.0)
180
+ webmock (~> 1.8.0)
181
+ yard (~> 0.7)
182
+ yellow-api-wrapper!
183
+
184
+ BUNDLED WITH
185
+ 1.12.1
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "http://rubygems.org"
4
+
5
+ gem "appraisal"
6
+
7
+ gemspec :path => "../"
@@ -0,0 +1,96 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ yellow-api-wrapper (0.0.5)
5
+ activesupport (>= 3.0.0)
6
+ faraday_middleware (>= 0.7.0)
7
+ rash (~> 0.4.0)
8
+ uuid (~> 2.3.5)
9
+
10
+ GEM
11
+ remote: http://rubygems.org/
12
+ specs:
13
+ activesupport (4.2.6)
14
+ i18n (~> 0.7)
15
+ json (~> 1.7, >= 1.7.7)
16
+ minitest (~> 5.1)
17
+ thread_safe (~> 0.3, >= 0.3.4)
18
+ tzinfo (~> 1.1)
19
+ addressable (2.4.0)
20
+ appraisal (2.1.0)
21
+ bundler
22
+ rake
23
+ thor (>= 0.14.0)
24
+ coderay (1.1.1)
25
+ crack (0.4.3)
26
+ safe_yaml (~> 1.0.0)
27
+ diff-lcs (1.2.5)
28
+ docile (1.1.5)
29
+ faraday (0.9.2)
30
+ multipart-post (>= 1.2, < 3)
31
+ faraday_middleware (0.10.0)
32
+ faraday (>= 0.7.4, < 0.10)
33
+ hashie (2.0.5)
34
+ i18n (0.7.0)
35
+ json (1.8.3)
36
+ macaddr (1.7.1)
37
+ systemu (~> 2.6.2)
38
+ method_source (0.8.2)
39
+ minitest (5.8.4)
40
+ multipart-post (2.0.0)
41
+ pry (0.10.3)
42
+ coderay (~> 1.1.0)
43
+ method_source (~> 0.8.1)
44
+ slop (~> 3.4)
45
+ rake (0.9.6)
46
+ rash (0.4.0)
47
+ hashie (~> 2.0.0)
48
+ rspec (3.4.0)
49
+ rspec-core (~> 3.4.0)
50
+ rspec-expectations (~> 3.4.0)
51
+ rspec-mocks (~> 3.4.0)
52
+ rspec-core (3.4.4)
53
+ rspec-support (~> 3.4.0)
54
+ rspec-expectations (3.4.0)
55
+ diff-lcs (>= 1.2.0, < 2.0)
56
+ rspec-support (~> 3.4.0)
57
+ rspec-mocks (3.4.1)
58
+ diff-lcs (>= 1.2.0, < 2.0)
59
+ rspec-support (~> 3.4.0)
60
+ rspec-support (3.4.1)
61
+ safe_yaml (1.0.4)
62
+ simplecov (0.11.2)
63
+ docile (~> 1.1.0)
64
+ json (~> 1.8)
65
+ simplecov-html (~> 0.10.0)
66
+ simplecov-html (0.10.0)
67
+ slop (3.6.0)
68
+ systemu (2.6.5)
69
+ thor (0.19.1)
70
+ thread_safe (0.3.5)
71
+ tzinfo (1.2.2)
72
+ thread_safe (~> 0.1)
73
+ uuid (2.3.8)
74
+ macaddr (~> 1.0)
75
+ vcr (3.0.1)
76
+ webmock (1.8.11)
77
+ addressable (>= 2.2.7)
78
+ crack (>= 0.1.7)
79
+ yard (0.8.7.6)
80
+
81
+ PLATFORMS
82
+ ruby
83
+
84
+ DEPENDENCIES
85
+ appraisal
86
+ pry (~> 0.10.3)
87
+ rake (~> 0.9)
88
+ rspec (~> 3.4)
89
+ simplecov (>= 0.5.0)
90
+ vcr (~> 3.0)
91
+ webmock (~> 1.8.0)
92
+ yard (~> 0.7)
93
+ yellow-api-wrapper!
94
+
95
+ BUNDLED WITH
96
+ 1.12.1