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.
- checksums.yaml +7 -0
- data/.autotest +1 -0
- data/.gitignore +42 -0
- data/.travis.yml +29 -0
- data/Appraisals +30 -0
- data/Gemfile +5 -0
- data/LICENSE.md +20 -0
- data/README.md +54 -0
- data/Rakefile +20 -0
- data/gemfiles/rails_3.0.gemfile +8 -0
- data/gemfiles/rails_3.0.gemfile.lock +150 -0
- data/gemfiles/rails_3.1.gemfile +8 -0
- data/gemfiles/rails_3.1.gemfile.lock +161 -0
- data/gemfiles/rails_3.2.gemfile +8 -0
- data/gemfiles/rails_3.2.gemfile.lock +159 -0
- data/gemfiles/rails_4.0.gemfile +8 -0
- data/gemfiles/rails_4.0.gemfile.lock +147 -0
- data/gemfiles/rails_4.1.gemfile +8 -0
- data/gemfiles/rails_4.1.gemfile.lock +151 -0
- data/gemfiles/rails_4.2.gemfile +8 -0
- data/gemfiles/rails_4.2.gemfile.lock +176 -0
- data/gemfiles/rails_5.0.gemfile +8 -0
- data/gemfiles/rails_5.0.gemfile.lock +185 -0
- data/gemfiles/ruby.gemfile +7 -0
- data/gemfiles/ruby.gemfile.lock +96 -0
- data/lib/yellow_api.rb +25 -0
- data/lib/yellow_api/client.rb +33 -0
- data/lib/yellow_api/client/connection.rb +22 -0
- data/lib/yellow_api/client/find_business.rb +31 -0
- data/lib/yellow_api/client/find_dealer.rb +27 -0
- data/lib/yellow_api/client/get_business_details.rb +67 -0
- data/lib/yellow_api/client/get_type_ahead.rb +28 -0
- data/lib/yellow_api/client/request.rb +24 -0
- data/lib/yellow_api/config.rb +71 -0
- data/lib/yellow_api/version.rb +3 -0
- data/spec/fixtures/find_business.json +1 -0
- data/spec/fixtures/find_dealer.json +1 -0
- data/spec/fixtures/get_business_details.json +1 -0
- data/spec/fixtures/get_type_ahead.json +1 -0
- data/spec/fixtures/vcr_cassettes/yellow_api/client/find_business/find_business.yml +207 -0
- data/spec/fixtures/vcr_cassettes/yellow_api/client/find_business/find_business/returns_the_correct_format_for_businesses.yml +209 -0
- data/spec/fixtures/vcr_cassettes/yellow_api/client/find_business/find_business/returns_the_correct_number_of_businesses.yml +209 -0
- 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
- 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
- data/spec/fixtures/vcr_cassettes/yellow_api/client/find_business/find_business/with_options_gets_the_language.yml +738 -0
- data/spec/fixtures/vcr_cassettes/yellow_api/client/find_business/find_business/with_options_returns_the_correct_number_of_businesses.yml +81 -0
- data/spec/fixtures/vcr_cassettes/yellow_api/client/find_business/find_business/with_special_characters_parses_the_special_characters.yml +213 -0
- data/spec/fixtures/vcr_cassettes/yellow_api/client/find_business/find_business/with_special_characters_returns_the_correct_format_for_businesses.yml +211 -0
- data/spec/fixtures/vcr_cassettes/yellow_api/client/find_business/find_business/with_special_characters_returns_the_correct_number_of_businesses.yml +213 -0
- data/spec/fixtures/vcr_cassettes/yellow_api/client/find_dealer/find_dealer.yml +45 -0
- data/spec/fixtures/vcr_cassettes/yellow_api/client/find_dealer/find_dealer/should_return_the_correct_parent_business.yml +43 -0
- data/spec/fixtures/vcr_cassettes/yellow_api/client/get_business_details/get_business_details/returns_the_correct_business.yml +52 -0
- data/spec/fixtures/vcr_cassettes/yellow_api/client/get_business_details/get_business_details/returns_the_correct_format.yml +52 -0
- data/spec/fixtures/vcr_cassettes/yellow_api/client/get_type_ahead/get_type_ahead.yml +50 -0
- data/spec/fixtures/vcr_cassettes/yellow_api/client/get_type_ahead/get_type_ahead/should_return_suggestions.yml +50 -0
- data/spec/helper.rb +45 -0
- data/spec/yellow_api/client_spec.rb +15 -0
- data/spec/yellow_api/find_business_spec.rb +89 -0
- data/spec/yellow_api/find_dealer_spec.rb +20 -0
- data/spec/yellow_api/get_business_details_spec.rb +21 -0
- data/spec/yellow_api/get_type_ahead_spec.rb +19 -0
- data/spec/yellow_api_spec.rb +9 -0
- data/yellow_api.gemspec +29 -0
- metadata +289 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: f22e4f9480f7411b78900b25e88187145f189238
|
4
|
+
data.tar.gz: beae4b0cabb5fa5ae3cf950d26ee9b2e418d9fb9
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: fc82ac109028f42e210f5da908517617836e389727522fec9072bc9d02f5d8051403a8dd494c240c6cd09db186cd47ee0f8ee1f463f85072bf2ddd25d7eac527
|
7
|
+
data.tar.gz: 2c0eafe3a84ad7d2b66a04990dcf3b0bca2e8c4e63bf63d2305ad35806e02ba052c88ea9b6aafb8948ba5c355e2c1f581ad9bf150db31cb2c1ffa54c4c83acd5
|
data/.autotest
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require 'autotest/bundler'
|
data/.gitignore
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
!.gitignore
|
2
|
+
*.gem
|
3
|
+
*.rbc
|
4
|
+
*.sw[a-p]
|
5
|
+
*.tmproj
|
6
|
+
*.tmproject
|
7
|
+
*.un~
|
8
|
+
*~
|
9
|
+
.DS_Store
|
10
|
+
.Spotlight-V100
|
11
|
+
.Trashes
|
12
|
+
._*
|
13
|
+
.bundle
|
14
|
+
.config
|
15
|
+
.directory
|
16
|
+
.elc
|
17
|
+
.redcar
|
18
|
+
.yardoc
|
19
|
+
/.emacs.desktop
|
20
|
+
/.emacs.desktop.lock
|
21
|
+
Desktop.ini
|
22
|
+
Gemfile.lock
|
23
|
+
Icon?
|
24
|
+
InstalledFiles
|
25
|
+
Session.vim
|
26
|
+
Thumbs.db
|
27
|
+
\#*\#
|
28
|
+
_yardoc
|
29
|
+
auto-save-list
|
30
|
+
coverage
|
31
|
+
doc/
|
32
|
+
lib/bundler/man
|
33
|
+
pkg
|
34
|
+
pkg/*
|
35
|
+
rdoc
|
36
|
+
spec/reports
|
37
|
+
test/tmp
|
38
|
+
test/version_tmp
|
39
|
+
tmp
|
40
|
+
tags
|
41
|
+
tmtags
|
42
|
+
tramp
|
data/.travis.yml
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
language: ruby
|
2
|
+
|
3
|
+
rvm:
|
4
|
+
- 2.0.0
|
5
|
+
- 2.1.8
|
6
|
+
- 2.2.5
|
7
|
+
- 2.3.1
|
8
|
+
- ruby-head
|
9
|
+
|
10
|
+
sudo: false
|
11
|
+
|
12
|
+
script: bundle exec rspec
|
13
|
+
|
14
|
+
before_install:
|
15
|
+
- gem install bundler -v 1.12.1
|
16
|
+
|
17
|
+
matrix:
|
18
|
+
allow_failures:
|
19
|
+
- rvm: ruby-head
|
20
|
+
- gemfile: gemfiles/rails_5.0.gemfile
|
21
|
+
|
22
|
+
gemfile:
|
23
|
+
- gemfiles/rails_3.0.gemfile
|
24
|
+
- gemfiles/rails_3.1.gemfile
|
25
|
+
- gemfiles/rails_3.2.gemfile
|
26
|
+
- gemfiles/rails_4.0.gemfile
|
27
|
+
- gemfiles/rails_4.1.gemfile
|
28
|
+
- gemfiles/rails_4.2.gemfile
|
29
|
+
- gemfiles/rails_5.0.gemfile
|
data/Appraisals
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
appraise "ruby" do
|
2
|
+
end
|
3
|
+
|
4
|
+
appraise "rails-3.0" do
|
5
|
+
gem "rails", "~> 3.0.20"
|
6
|
+
end
|
7
|
+
|
8
|
+
appraise "rails-3.1" do
|
9
|
+
gem "rails", "~> 3.1.12"
|
10
|
+
end
|
11
|
+
|
12
|
+
appraise "rails-3.2" do
|
13
|
+
gem "rails", "~> 3.2.21"
|
14
|
+
end
|
15
|
+
|
16
|
+
appraise "rails-4.0" do
|
17
|
+
gem "rails", "~> 4.0.13"
|
18
|
+
end
|
19
|
+
|
20
|
+
appraise "rails-4.1" do
|
21
|
+
gem "rails", "~> 4.1.15"
|
22
|
+
end
|
23
|
+
|
24
|
+
appraise "rails-4.2" do
|
25
|
+
gem "rails", "4.2.6"
|
26
|
+
end
|
27
|
+
|
28
|
+
appraise "rails-5.0" do
|
29
|
+
gem "rails", "5.0.0.beta4"
|
30
|
+
end
|
data/Gemfile
ADDED
data/LICENSE.md
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2012 Ian Bishop
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
# Yellow API
|
2
|
+
|
3
|
+
Ruby wrapper for the YellowPages' [YellowAPI](http://www.yellowapi.com).
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
``` bash
|
7
|
+
$ gem install yellow_api
|
8
|
+
```
|
9
|
+
## Usage
|
10
|
+
|
11
|
+
### Creating a client
|
12
|
+
``` ruby
|
13
|
+
# Production
|
14
|
+
@client = YellowApi.new(:apikey => "yourapikeygoeshere")
|
15
|
+
|
16
|
+
# Sandbox
|
17
|
+
@client = YellowApi.new(:apikey => "sandboxapikey", :sandbox_enabled => true)
|
18
|
+
```
|
19
|
+
### Find businesses by listing
|
20
|
+
``` ruby
|
21
|
+
@client.find_business("barber", "Ottawa")
|
22
|
+
|
23
|
+
@client.find_business("barber", "Ottawa", { :pgLen => 10 }) # Limit to 10 listings
|
24
|
+
```
|
25
|
+
|
26
|
+
### Get business details
|
27
|
+
|
28
|
+
``` ruby
|
29
|
+
my_barber = @client.find_business("barber", "Ottawa").listings.first
|
30
|
+
@client.get_business_details(my_barber.address.prov, my_barber.name, my_barber.id)
|
31
|
+
```
|
32
|
+
|
33
|
+
### Find dealers
|
34
|
+
``` ruby
|
35
|
+
@client.find_dealer(6418182, { :pgLen => 10 })
|
36
|
+
```
|
37
|
+
|
38
|
+
### Get type ahead
|
39
|
+
|
40
|
+
``` ruby
|
41
|
+
@client.get_type_ahead("auto", :what)
|
42
|
+
@client.get_type_ahead("monct", :where)
|
43
|
+
```
|
44
|
+
|
45
|
+
## Documentation
|
46
|
+
[See here](http://rdoc.info/github/ianbishop/yellow_api/master/YellowApi)
|
47
|
+
|
48
|
+
[Official API docs](http://www.yellowapi.com/docs/places)
|
49
|
+
|
50
|
+
## Inspiration
|
51
|
+
API style was largely inspired by sferik's [twitter](https://github.com/sferik/twitter).
|
52
|
+
|
53
|
+
## Copyright
|
54
|
+
See [LICENSE](https://github.com/ianbishop/yellow_api/blob/master/LICENSE.md) for more details.
|
data/Rakefile
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/usr/bin/env rake
|
2
|
+
|
3
|
+
require 'bundler'
|
4
|
+
Bundler::GemHelper.install_tasks
|
5
|
+
|
6
|
+
require 'rspec/core/rake_task'
|
7
|
+
RSpec::Core::RakeTask.new(:spec)
|
8
|
+
|
9
|
+
task default: :spec
|
10
|
+
task test: :spec
|
11
|
+
|
12
|
+
task default: :appraisal if !ENV['APPRAISAL_INITIALIZED'] && !ENV['TRAVIS']
|
13
|
+
|
14
|
+
require 'yard'
|
15
|
+
namespace :doc do
|
16
|
+
YARD::Rake::YardocTask.new do |task|
|
17
|
+
task.files = ['LICENSE.md', 'lib/**/*.rb']
|
18
|
+
task.options = ['--markup', 'markdown']
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,150 @@
|
|
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
|
+
abstract (1.0.0)
|
14
|
+
actionmailer (3.0.20)
|
15
|
+
actionpack (= 3.0.20)
|
16
|
+
mail (~> 2.2.19)
|
17
|
+
actionpack (3.0.20)
|
18
|
+
activemodel (= 3.0.20)
|
19
|
+
activesupport (= 3.0.20)
|
20
|
+
builder (~> 2.1.2)
|
21
|
+
erubis (~> 2.6.6)
|
22
|
+
i18n (~> 0.5.0)
|
23
|
+
rack (~> 1.2.5)
|
24
|
+
rack-mount (~> 0.6.14)
|
25
|
+
rack-test (~> 0.5.7)
|
26
|
+
tzinfo (~> 0.3.23)
|
27
|
+
activemodel (3.0.20)
|
28
|
+
activesupport (= 3.0.20)
|
29
|
+
builder (~> 2.1.2)
|
30
|
+
i18n (~> 0.5.0)
|
31
|
+
activerecord (3.0.20)
|
32
|
+
activemodel (= 3.0.20)
|
33
|
+
activesupport (= 3.0.20)
|
34
|
+
arel (~> 2.0.10)
|
35
|
+
tzinfo (~> 0.3.23)
|
36
|
+
activeresource (3.0.20)
|
37
|
+
activemodel (= 3.0.20)
|
38
|
+
activesupport (= 3.0.20)
|
39
|
+
activesupport (3.0.20)
|
40
|
+
addressable (2.4.0)
|
41
|
+
appraisal (2.1.0)
|
42
|
+
bundler
|
43
|
+
rake
|
44
|
+
thor (>= 0.14.0)
|
45
|
+
arel (2.0.10)
|
46
|
+
builder (2.1.2)
|
47
|
+
coderay (1.1.1)
|
48
|
+
crack (0.4.3)
|
49
|
+
safe_yaml (~> 1.0.0)
|
50
|
+
diff-lcs (1.2.5)
|
51
|
+
docile (1.1.5)
|
52
|
+
erubis (2.6.6)
|
53
|
+
abstract (>= 1.0.0)
|
54
|
+
faraday (0.9.2)
|
55
|
+
multipart-post (>= 1.2, < 3)
|
56
|
+
faraday_middleware (0.10.0)
|
57
|
+
faraday (>= 0.7.4, < 0.10)
|
58
|
+
hashie (2.0.5)
|
59
|
+
i18n (0.5.4)
|
60
|
+
json (1.8.3)
|
61
|
+
macaddr (1.7.1)
|
62
|
+
systemu (~> 2.6.2)
|
63
|
+
mail (2.2.20)
|
64
|
+
activesupport (>= 2.3.6)
|
65
|
+
i18n (>= 0.4.0)
|
66
|
+
mime-types (~> 1.16)
|
67
|
+
treetop (~> 1.4.8)
|
68
|
+
method_source (0.8.2)
|
69
|
+
mime-types (1.25.1)
|
70
|
+
multipart-post (2.0.0)
|
71
|
+
polyglot (0.3.5)
|
72
|
+
pry (0.10.3)
|
73
|
+
coderay (~> 1.1.0)
|
74
|
+
method_source (~> 0.8.1)
|
75
|
+
slop (~> 3.4)
|
76
|
+
rack (1.2.8)
|
77
|
+
rack-mount (0.6.14)
|
78
|
+
rack (>= 1.0.0)
|
79
|
+
rack-test (0.5.7)
|
80
|
+
rack (>= 1.0)
|
81
|
+
rails (3.0.20)
|
82
|
+
actionmailer (= 3.0.20)
|
83
|
+
actionpack (= 3.0.20)
|
84
|
+
activerecord (= 3.0.20)
|
85
|
+
activeresource (= 3.0.20)
|
86
|
+
activesupport (= 3.0.20)
|
87
|
+
bundler (~> 1.0)
|
88
|
+
railties (= 3.0.20)
|
89
|
+
railties (3.0.20)
|
90
|
+
actionpack (= 3.0.20)
|
91
|
+
activesupport (= 3.0.20)
|
92
|
+
rake (>= 0.8.7)
|
93
|
+
rdoc (~> 3.4)
|
94
|
+
thor (~> 0.14.4)
|
95
|
+
rake (0.9.6)
|
96
|
+
rash (0.4.0)
|
97
|
+
hashie (~> 2.0.0)
|
98
|
+
rdoc (3.12.2)
|
99
|
+
json (~> 1.4)
|
100
|
+
rspec (3.4.0)
|
101
|
+
rspec-core (~> 3.4.0)
|
102
|
+
rspec-expectations (~> 3.4.0)
|
103
|
+
rspec-mocks (~> 3.4.0)
|
104
|
+
rspec-core (3.4.4)
|
105
|
+
rspec-support (~> 3.4.0)
|
106
|
+
rspec-expectations (3.4.0)
|
107
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
108
|
+
rspec-support (~> 3.4.0)
|
109
|
+
rspec-mocks (3.4.1)
|
110
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
111
|
+
rspec-support (~> 3.4.0)
|
112
|
+
rspec-support (3.4.1)
|
113
|
+
safe_yaml (1.0.4)
|
114
|
+
simplecov (0.11.2)
|
115
|
+
docile (~> 1.1.0)
|
116
|
+
json (~> 1.8)
|
117
|
+
simplecov-html (~> 0.10.0)
|
118
|
+
simplecov-html (0.10.0)
|
119
|
+
slop (3.6.0)
|
120
|
+
systemu (2.6.5)
|
121
|
+
thor (0.14.6)
|
122
|
+
treetop (1.4.15)
|
123
|
+
polyglot
|
124
|
+
polyglot (>= 0.3.1)
|
125
|
+
tzinfo (0.3.49)
|
126
|
+
uuid (2.3.8)
|
127
|
+
macaddr (~> 1.0)
|
128
|
+
vcr (3.0.1)
|
129
|
+
webmock (1.8.11)
|
130
|
+
addressable (>= 2.2.7)
|
131
|
+
crack (>= 0.1.7)
|
132
|
+
yard (0.8.7.6)
|
133
|
+
|
134
|
+
PLATFORMS
|
135
|
+
ruby
|
136
|
+
|
137
|
+
DEPENDENCIES
|
138
|
+
appraisal
|
139
|
+
pry (~> 0.10.3)
|
140
|
+
rails (~> 3.0.20)
|
141
|
+
rake (~> 0.9)
|
142
|
+
rspec (~> 3.4)
|
143
|
+
simplecov (>= 0.5.0)
|
144
|
+
vcr (~> 3.0)
|
145
|
+
webmock (~> 1.8.0)
|
146
|
+
yard (~> 0.7)
|
147
|
+
yellow-api-wrapper!
|
148
|
+
|
149
|
+
BUNDLED WITH
|
150
|
+
1.12.1
|
@@ -0,0 +1,161 @@
|
|
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 (3.1.12)
|
14
|
+
actionpack (= 3.1.12)
|
15
|
+
mail (~> 2.4.4)
|
16
|
+
actionpack (3.1.12)
|
17
|
+
activemodel (= 3.1.12)
|
18
|
+
activesupport (= 3.1.12)
|
19
|
+
builder (~> 3.0.0)
|
20
|
+
erubis (~> 2.7.0)
|
21
|
+
i18n (~> 0.6)
|
22
|
+
rack (~> 1.3.6)
|
23
|
+
rack-cache (~> 1.2)
|
24
|
+
rack-mount (~> 0.8.2)
|
25
|
+
rack-test (~> 0.6.1)
|
26
|
+
sprockets (~> 2.0.4)
|
27
|
+
activemodel (3.1.12)
|
28
|
+
activesupport (= 3.1.12)
|
29
|
+
builder (~> 3.0.0)
|
30
|
+
i18n (~> 0.6)
|
31
|
+
activerecord (3.1.12)
|
32
|
+
activemodel (= 3.1.12)
|
33
|
+
activesupport (= 3.1.12)
|
34
|
+
arel (~> 2.2.3)
|
35
|
+
tzinfo (~> 0.3.29)
|
36
|
+
activeresource (3.1.12)
|
37
|
+
activemodel (= 3.1.12)
|
38
|
+
activesupport (= 3.1.12)
|
39
|
+
activesupport (3.1.12)
|
40
|
+
multi_json (~> 1.0)
|
41
|
+
addressable (2.4.0)
|
42
|
+
appraisal (2.1.0)
|
43
|
+
bundler
|
44
|
+
rake
|
45
|
+
thor (>= 0.14.0)
|
46
|
+
arel (2.2.3)
|
47
|
+
builder (3.0.4)
|
48
|
+
coderay (1.1.1)
|
49
|
+
crack (0.4.3)
|
50
|
+
safe_yaml (~> 1.0.0)
|
51
|
+
diff-lcs (1.2.5)
|
52
|
+
docile (1.1.5)
|
53
|
+
erubis (2.7.0)
|
54
|
+
faraday (0.9.2)
|
55
|
+
multipart-post (>= 1.2, < 3)
|
56
|
+
faraday_middleware (0.10.0)
|
57
|
+
faraday (>= 0.7.4, < 0.10)
|
58
|
+
hashie (2.0.5)
|
59
|
+
hike (1.2.3)
|
60
|
+
i18n (0.7.0)
|
61
|
+
json (1.8.3)
|
62
|
+
macaddr (1.7.1)
|
63
|
+
systemu (~> 2.6.2)
|
64
|
+
mail (2.4.4)
|
65
|
+
i18n (>= 0.4.0)
|
66
|
+
mime-types (~> 1.16)
|
67
|
+
treetop (~> 1.4.8)
|
68
|
+
method_source (0.8.2)
|
69
|
+
mime-types (1.25.1)
|
70
|
+
multi_json (1.11.3)
|
71
|
+
multipart-post (2.0.0)
|
72
|
+
polyglot (0.3.5)
|
73
|
+
pry (0.10.3)
|
74
|
+
coderay (~> 1.1.0)
|
75
|
+
method_source (~> 0.8.1)
|
76
|
+
slop (~> 3.4)
|
77
|
+
rack (1.3.10)
|
78
|
+
rack-cache (1.6.1)
|
79
|
+
rack (>= 0.4)
|
80
|
+
rack-mount (0.8.3)
|
81
|
+
rack (>= 1.0.0)
|
82
|
+
rack-ssl (1.3.4)
|
83
|
+
rack
|
84
|
+
rack-test (0.6.3)
|
85
|
+
rack (>= 1.0)
|
86
|
+
rails (3.1.12)
|
87
|
+
actionmailer (= 3.1.12)
|
88
|
+
actionpack (= 3.1.12)
|
89
|
+
activerecord (= 3.1.12)
|
90
|
+
activeresource (= 3.1.12)
|
91
|
+
activesupport (= 3.1.12)
|
92
|
+
bundler (~> 1.0)
|
93
|
+
railties (= 3.1.12)
|
94
|
+
railties (3.1.12)
|
95
|
+
actionpack (= 3.1.12)
|
96
|
+
activesupport (= 3.1.12)
|
97
|
+
rack-ssl (~> 1.3.2)
|
98
|
+
rake (>= 0.8.7)
|
99
|
+
rdoc (~> 3.4)
|
100
|
+
thor (~> 0.14.6)
|
101
|
+
rake (0.9.6)
|
102
|
+
rash (0.4.0)
|
103
|
+
hashie (~> 2.0.0)
|
104
|
+
rdoc (3.12.2)
|
105
|
+
json (~> 1.4)
|
106
|
+
rspec (3.4.0)
|
107
|
+
rspec-core (~> 3.4.0)
|
108
|
+
rspec-expectations (~> 3.4.0)
|
109
|
+
rspec-mocks (~> 3.4.0)
|
110
|
+
rspec-core (3.4.4)
|
111
|
+
rspec-support (~> 3.4.0)
|
112
|
+
rspec-expectations (3.4.0)
|
113
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
114
|
+
rspec-support (~> 3.4.0)
|
115
|
+
rspec-mocks (3.4.1)
|
116
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
117
|
+
rspec-support (~> 3.4.0)
|
118
|
+
rspec-support (3.4.1)
|
119
|
+
safe_yaml (1.0.4)
|
120
|
+
simplecov (0.11.2)
|
121
|
+
docile (~> 1.1.0)
|
122
|
+
json (~> 1.8)
|
123
|
+
simplecov-html (~> 0.10.0)
|
124
|
+
simplecov-html (0.10.0)
|
125
|
+
slop (3.6.0)
|
126
|
+
sprockets (2.0.5)
|
127
|
+
hike (~> 1.2)
|
128
|
+
rack (~> 1.0)
|
129
|
+
tilt (~> 1.1, != 1.3.0)
|
130
|
+
systemu (2.6.5)
|
131
|
+
thor (0.14.6)
|
132
|
+
tilt (1.4.1)
|
133
|
+
treetop (1.4.15)
|
134
|
+
polyglot
|
135
|
+
polyglot (>= 0.3.1)
|
136
|
+
tzinfo (0.3.49)
|
137
|
+
uuid (2.3.8)
|
138
|
+
macaddr (~> 1.0)
|
139
|
+
vcr (3.0.1)
|
140
|
+
webmock (1.8.11)
|
141
|
+
addressable (>= 2.2.7)
|
142
|
+
crack (>= 0.1.7)
|
143
|
+
yard (0.8.7.6)
|
144
|
+
|
145
|
+
PLATFORMS
|
146
|
+
ruby
|
147
|
+
|
148
|
+
DEPENDENCIES
|
149
|
+
appraisal
|
150
|
+
pry (~> 0.10.3)
|
151
|
+
rails (~> 3.1.12)
|
152
|
+
rake (~> 0.9)
|
153
|
+
rspec (~> 3.4)
|
154
|
+
simplecov (>= 0.5.0)
|
155
|
+
vcr (~> 3.0)
|
156
|
+
webmock (~> 1.8.0)
|
157
|
+
yard (~> 0.7)
|
158
|
+
yellow-api-wrapper!
|
159
|
+
|
160
|
+
BUNDLED WITH
|
161
|
+
1.12.1
|