yellow-api-wrapper 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f22e4f9480f7411b78900b25e88187145f189238
4
- data.tar.gz: beae4b0cabb5fa5ae3cf950d26ee9b2e418d9fb9
3
+ metadata.gz: 053fbd87b1e6e04318fec5ad09a875a098c4878c
4
+ data.tar.gz: 5455779e0b14eda4e40b80f2f2c1043a0260dfcb
5
5
  SHA512:
6
- metadata.gz: fc82ac109028f42e210f5da908517617836e389727522fec9072bc9d02f5d8051403a8dd494c240c6cd09db186cd47ee0f8ee1f463f85072bf2ddd25d7eac527
7
- data.tar.gz: 2c0eafe3a84ad7d2b66a04990dcf3b0bca2e8c4e63bf63d2305ad35806e02ba052c88ea9b6aafb8948ba5c355e2c1f581ad9bf150db31cb2c1ffa54c4c83acd5
6
+ metadata.gz: 90c96fd6060736908a31ed8bf3ae2bed594420a9002a5c281c775d48143e056224612582d554fbad6a803a851cafccb798ca14f85371495f7616f8cd4c3caded
7
+ data.tar.gz: 254a8f52abdfe4cd5fef87fdc5a939043737914132dec7bb0b78907897d71f10f0331649a636cd5df7cb9c699361767d4dc88858d6ec2ae7a6c8b3dead7649c6
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../
3
3
  specs:
4
- yellow-api-wrapper (0.0.5)
4
+ yellow-api-wrapper (0.0.1)
5
5
  activesupport (>= 3.0.0)
6
6
  faraday_middleware (>= 0.7.0)
7
7
  rash (~> 0.4.0)
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../
3
3
  specs:
4
- yellow-api-wrapper (0.0.5)
4
+ yellow-api-wrapper (0.0.1)
5
5
  activesupport (>= 3.0.0)
6
6
  faraday_middleware (>= 0.7.0)
7
7
  rash (~> 0.4.0)
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../
3
3
  specs:
4
- yellow-api-wrapper (0.0.5)
4
+ yellow-api-wrapper (0.0.1)
5
5
  activesupport (>= 3.0.0)
6
6
  faraday_middleware (>= 0.7.0)
7
7
  rash (~> 0.4.0)
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../
3
3
  specs:
4
- yellow-api-wrapper (0.0.5)
4
+ yellow-api-wrapper (0.0.1)
5
5
  activesupport (>= 3.0.0)
6
6
  faraday_middleware (>= 0.7.0)
7
7
  rash (~> 0.4.0)
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../
3
3
  specs:
4
- yellow-api-wrapper (0.0.5)
4
+ yellow-api-wrapper (0.0.1)
5
5
  activesupport (>= 3.0.0)
6
6
  faraday_middleware (>= 0.7.0)
7
7
  rash (~> 0.4.0)
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../
3
3
  specs:
4
- yellow-api-wrapper (0.0.5)
4
+ yellow-api-wrapper (0.0.1)
5
5
  activesupport (>= 3.0.0)
6
6
  faraday_middleware (>= 0.7.0)
7
7
  rash (~> 0.4.0)
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../
3
3
  specs:
4
- yellow-api-wrapper (0.0.5)
4
+ yellow-api-wrapper (0.0.1)
5
5
  activesupport (>= 3.0.0)
6
6
  faraday_middleware (>= 0.7.0)
7
7
  rash (~> 0.4.0)
@@ -1,3 +1,3 @@
1
1
  module YellowApi
2
- VERSION = '0.0.1'.freeze
2
+ VERSION = '0.0.2'.freeze
3
3
  end
@@ -2,7 +2,7 @@ $LOAD_PATH.unshift File.expand_path('..', __FILE__)
2
2
  $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
3
3
  require 'simplecov'
4
4
  SimpleCov.start
5
- require 'yellow_api'
5
+ require 'yellow-api-wrapper'
6
6
  require 'rspec'
7
7
  require 'pry'
8
8
  require 'vcr'
@@ -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("\n")
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 = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
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.1
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/yellow_api.rb
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