-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #105 from qpowell/update-httparty
v1.0.0
- Loading branch information
Showing
4 changed files
with
24 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
language: ruby | ||
rvm: | ||
- 1.9.3 | ||
- 2.1.3 | ||
- 2.2.5 | ||
- 2.3.1 | ||
script: bundle exec rspec | ||
before_script: cp spec/api_key.travis.rb spec/api_key.rb | ||
after_script: rm spec/api_key.rb | ||
before_install: | ||
- gem install bundler -v 1.14.4 | ||
- gem install bundler -v 1.14.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ $:.push File.expand_path('../lib', __FILE__) | |
|
||
Gem::Specification.new do |s| | ||
s.name = 'google_places' | ||
s.version = '0.34.2' | ||
s.version = '1.0.0' | ||
s.platform = Gem::Platform::RUBY | ||
s.authors = ['Marcel de Graaf'] | ||
s.email = ['[email protected]'] | ||
|
@@ -17,7 +17,7 @@ Gem::Specification.new do |s| | |
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } | ||
s.require_paths = ['lib'] | ||
|
||
s.add_dependency 'httparty', ['>= 0.13.1', '< 0.14.1'] | ||
s.add_dependency 'httparty', '>= 0.13.1' | ||
s.add_development_dependency 'rspec', '~> 3.0' | ||
s.add_development_dependency 'addressable', '~> 2.4.0' | ||
s.add_development_dependency 'webmock', '~> 1.18' | ||
|