Skip to content
This repository has been archived by the owner on Mar 30, 2022. It is now read-only.

Commit

Permalink
Update gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
Ernie Miller committed May 5, 2011
1 parent 73d47d3 commit bce0c82
Showing 1 changed file with 11 additions and 14 deletions.
25 changes: 11 additions & 14 deletions meta_search.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

Gem::Specification.new do |s|
s.name = %q{meta_search}
s.version = "1.0.5"
s.version = "1.1.0.pre"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = [%q{Ernie Miller}]
s.date = %q{2011-05-05}
s.description = %q{
Expand Down Expand Up @@ -79,23 +79,20 @@ you're feeling especially appreciative. It'd help me justify this

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<shoulda>, [">= 0"])
s.add_runtime_dependency(%q<activerecord>, ["~> 3.0.2"])
s.add_runtime_dependency(%q<activesupport>, ["~> 3.0.2"])
s.add_runtime_dependency(%q<actionpack>, ["~> 3.0.2"])
s.add_runtime_dependency(%q<arel>, ["~> 2.0.2"])
s.add_runtime_dependency(%q<activerecord>, ["~> 3.1.0"])
s.add_runtime_dependency(%q<activesupport>, ["~> 3.1.0"])
s.add_runtime_dependency(%q<actionpack>, ["~> 3.1.0"])

This comment has been minimized.

Copy link
@qoobaa

qoobaa May 6, 2011

~> 3.1.0 doesn't match "3.1.0.beta1", there's no version matching "3.1.0" currently. Could you fix that?

This comment has been minimized.

Copy link
@ernie

ernie May 6, 2011

Contributor

Done.

else
s.add_dependency(%q<shoulda>, [">= 0"])
s.add_dependency(%q<activerecord>, ["~> 3.0.2"])
s.add_dependency(%q<activesupport>, ["~> 3.0.2"])
s.add_dependency(%q<actionpack>, ["~> 3.0.2"])
s.add_dependency(%q<arel>, ["~> 2.0.2"])
s.add_dependency(%q<activerecord>, ["~> 3.1.0"])
s.add_dependency(%q<activesupport>, ["~> 3.1.0"])
s.add_dependency(%q<actionpack>, ["~> 3.1.0"])
end
else
s.add_dependency(%q<shoulda>, [">= 0"])
s.add_dependency(%q<activerecord>, ["~> 3.0.2"])
s.add_dependency(%q<activesupport>, ["~> 3.0.2"])
s.add_dependency(%q<actionpack>, ["~> 3.0.2"])
s.add_dependency(%q<arel>, ["~> 2.0.2"])
s.add_dependency(%q<activerecord>, ["~> 3.1.0"])
s.add_dependency(%q<activesupport>, ["~> 3.1.0"])
s.add_dependency(%q<actionpack>, ["~> 3.1.0"])
end
end

0 comments on commit bce0c82

Please sign in to comment.