yellow-api-wrapper 0.0.1 → 0.0.2
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 +4 -4
- data/gemfiles/rails_3.0.gemfile.lock +1 -1
- data/gemfiles/rails_3.1.gemfile.lock +1 -1
- data/gemfiles/rails_3.2.gemfile.lock +1 -1
- data/gemfiles/rails_4.0.gemfile.lock +1 -1
- data/gemfiles/rails_4.1.gemfile.lock +1 -1
- data/gemfiles/rails_4.2.gemfile.lock +1 -1
- data/gemfiles/ruby.gemfile.lock +1 -1
- data/lib/{yellow_api.rb → yellow-api-wrapper.rb} +0 -0
- data/lib/yellow_api/version.rb +1 -1
- data/spec/helper.rb +1 -1
- data/yellow_api.gemspec +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 053fbd87b1e6e04318fec5ad09a875a098c4878c
|
4
|
+
data.tar.gz: 5455779e0b14eda4e40b80f2f2c1043a0260dfcb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 90c96fd6060736908a31ed8bf3ae2bed594420a9002a5c281c775d48143e056224612582d554fbad6a803a851cafccb798ca14f85371495f7616f8cd4c3caded
|
7
|
+
data.tar.gz: 254a8f52abdfe4cd5fef87fdc5a939043737914132dec7bb0b78907897d71f10f0331649a636cd5df7cb9c699361767d4dc88858d6ec2ae7a6c8b3dead7649c6
|
data/gemfiles/ruby.gemfile.lock
CHANGED
File without changes
|
data/lib/yellow_api/version.rb
CHANGED
data/spec/helper.rb
CHANGED
data/yellow_api.gemspec
CHANGED
@@ -10,9 +10,9 @@ Gem::Specification.new do |gem|
|
|
10
10
|
gem.summary = "Wrapper for the YellowPages' Yellow API"
|
11
11
|
gem.description = "Ruby wrapper for the YellowPages' Yellow API based on Ian Bishop's yellow_api gem"
|
12
12
|
|
13
|
-
gem.files = `git ls-files`.split("\
|
13
|
+
gem.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
14
14
|
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
15
|
-
gem.executables =
|
15
|
+
gem.executables = gem.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
16
16
|
gem.require_paths = ['lib']
|
17
17
|
|
18
18
|
gem.add_development_dependency 'rake', '~> 0.9'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: yellow-api-wrapper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ian Bishop
|
@@ -196,7 +196,7 @@ files:
|
|
196
196
|
- gemfiles/rails_5.0.gemfile.lock
|
197
197
|
- gemfiles/ruby.gemfile
|
198
198
|
- gemfiles/ruby.gemfile.lock
|
199
|
-
- lib/
|
199
|
+
- lib/yellow-api-wrapper.rb
|
200
200
|
- lib/yellow_api/client.rb
|
201
201
|
- lib/yellow_api/client/connection.rb
|
202
202
|
- lib/yellow_api/client/find_business.rb
|