Skip to content

Commit

Permalink
Lock rspec dependency to 1.x (for now)
Browse files Browse the repository at this point in the history
  • Loading branch information
sferik committed Oct 19, 2010
1 parent 1dfc0eb commit 291a268
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Gemfile
@@ -1,8 +1,8 @@
source "http://rubygems.org"

gem 'rspec'
gem 'rspec', '~> 1.3'

gem 'json', :require => nil
gem 'json_pure', :require => nil
gem 'yajl-ruby', :require => nil
gem 'activesupport', :require => nil
gem 'activesupport', :require => nil
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -10,7 +10,7 @@ begin
gem.email = "michael@intridea.com"
gem.homepage = "http://github.com/intridea/multi_json"
gem.authors = ["Michael Bleigh"]
gem.add_development_dependency "rspec", ">= 1.2.9"
gem.add_development_dependency "rspec", "~> 1.3"
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end
Jeweler::GemcutterTasks.new
Expand Down
12 changes: 6 additions & 6 deletions multi_json.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 = ["Michael Bleigh"]
s.date = %q{2010-06-19}
s.date = %q{2010-10-18}
s.description = %q{A gem to provide swappable JSON backends utilizing Yajl::Ruby, the JSON gem, ActiveSupport, or JSON pure.}
s.email = %q{michael@intridea.com}
s.extra_rdoc_files = [
Expand Down Expand Up @@ -37,7 +37,7 @@ Gem::Specification.new do |s|
s.homepage = %q{http://github.com/intridea/multi_json}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.6}
s.rubygems_version = %q{1.3.7}
s.summary = %q{A gem to provide swappable JSON backends.}
s.test_files = [
"spec/multi_json_spec.rb",
Expand All @@ -48,13 +48,13 @@ Gem::Specification.new do |s|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rspec>, ["~> 1.3"])
else
s.add_dependency(%q<rspec>, [">= 1.2.9"])
s.add_dependency(%q<rspec>, ["~> 1.3"])
end
else
s.add_dependency(%q<rspec>, [">= 1.2.9"])
s.add_dependency(%q<rspec>, ["~> 1.3"])
end
end

0 comments on commit 291a268

Please sign in to comment.