Skip to content

Commit

Permalink
Allow for Hashie 2.x.x
Browse files Browse the repository at this point in the history
to make it work with other gems which depend Hashie 2.x.x
  • Loading branch information
itzki committed Apr 26, 2013
1 parent 2d889a4 commit 9082c7f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -5,7 +5,7 @@ source "http://rubygems.org"

gem 'faraday', '~> 0.8'
gem 'faraday_middleware', '>= 0.8'
gem 'hashie', '~> 1.0'
gem 'hashie', '>= 1.0', '< 3.0.0'



Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Expand Up @@ -8,7 +8,7 @@ GEM
faraday_middleware (0.8.7)
faraday (>= 0.7.4, < 0.9)
git (1.2.5)
hashie (1.1.0)
hashie (2.0.4)
jeweler (1.6.4)
bundler (~> 1.0)
git (>= 1.2.5)
Expand All @@ -33,7 +33,7 @@ DEPENDENCIES
fakeweb (~> 1.3)
faraday (~> 0.8)
faraday_middleware (>= 0.8)
hashie (~> 1.0)
hashie (>= 1.0, < 3.0.0)
jeweler (~> 1.5)
jnunemaker-matchy (~> 0.4)
json_pure (~> 1.4)
Expand Down
8 changes: 4 additions & 4 deletions foursquare2.gemspec
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |s|

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Matt Mueller", "Marco Moura"]
s.date = "2013-04-14"
s.date = "2013-04-26"
s.description = "Gives access to all endpoints in version 2 of foursquare's API with syntax that will be familiar to those who used the original foursquare gem by Jeremy Welch."
s.email = ["muellermr@gmail.com", "email@marcomoura.com"]
s.extra_rdoc_files = [
Expand Down Expand Up @@ -122,7 +122,7 @@ Gem::Specification.new do |s|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<faraday>, ["~> 0.8"])
s.add_runtime_dependency(%q<faraday_middleware>, [">= 0.8"])
s.add_runtime_dependency(%q<hashie>, ["~> 1.0"])
s.add_runtime_dependency(%q<hashie>, ["< 3.0.0", ">= 1.0"])
s.add_development_dependency(%q<awesome_print>, [">= 0"])
s.add_development_dependency(%q<shoulda>, [">= 0"])
s.add_development_dependency(%q<bundler>, ["~> 1.0"])
Expand All @@ -135,7 +135,7 @@ Gem::Specification.new do |s|
else
s.add_dependency(%q<faraday>, ["~> 0.8"])
s.add_dependency(%q<faraday_middleware>, [">= 0.8"])
s.add_dependency(%q<hashie>, ["~> 1.0"])
s.add_dependency(%q<hashie>, ["< 3.0.0", ">= 1.0"])
s.add_dependency(%q<awesome_print>, [">= 0"])
s.add_dependency(%q<shoulda>, [">= 0"])
s.add_dependency(%q<bundler>, ["~> 1.0"])
Expand All @@ -149,7 +149,7 @@ Gem::Specification.new do |s|
else
s.add_dependency(%q<faraday>, ["~> 0.8"])
s.add_dependency(%q<faraday_middleware>, [">= 0.8"])
s.add_dependency(%q<hashie>, ["~> 1.0"])
s.add_dependency(%q<hashie>, ["< 3.0.0", ">= 1.0"])
s.add_dependency(%q<awesome_print>, [">= 0"])
s.add_dependency(%q<shoulda>, [">= 0"])
s.add_dependency(%q<bundler>, ["~> 1.0"])
Expand Down

0 comments on commit 9082c7f

Please sign in to comment.