Skip to content

Commit

Permalink
minitest is a dev dep
Browse files Browse the repository at this point in the history
  • Loading branch information
tenderlove committed Jan 31, 2011
1 parent 070b420 commit 095a624
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions arel.gemspec
Expand Up @@ -2,11 +2,11 @@


Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{arel} s.name = %q{arel}
s.version = "2.0.7.20110125133719" s.version = "2.0.7.20110131083913"


s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Aaron Patterson", "Bryan Halmkamp", "Emilio Tagua", "Nick Kallen"] s.authors = ["Aaron Patterson", "Bryan Halmkamp", "Emilio Tagua", "Nick Kallen"]
s.date = %q{2011-01-25} s.date = %q{2011-01-31}
s.description = %q{Arel is a Relational Algebra for Ruby. It 1) simplifies the generation complex of SQL queries and it 2) adapts to various RDBMS systems. It is intended to be a framework framework; that is, you can build your own ORM with it, focusing on innovative object and collection modeling as opposed to database compatibility and query generation.} s.description = %q{Arel is a Relational Algebra for Ruby. It 1) simplifies the generation complex of SQL queries and it 2) adapts to various RDBMS systems. It is intended to be a framework framework; that is, you can build your own ORM with it, focusing on innovative object and collection modeling as opposed to database compatibility and query generation.}
s.email = ["aaron@tenderlovemaking.com", "bryan@brynary.com", "miloops@gmail.com", "nick@example.org"] s.email = ["aaron@tenderlovemaking.com", "bryan@brynary.com", "miloops@gmail.com", "nick@example.org"]
s.extra_rdoc_files = ["History.txt", "MIT-LICENSE.txt", "Manifest.txt", "README.markdown"] s.extra_rdoc_files = ["History.txt", "MIT-LICENSE.txt", "Manifest.txt", "README.markdown"]
Expand All @@ -24,15 +24,18 @@ Gem::Specification.new do |s|
s.specification_version = 3 s.specification_version = 3


if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<minitest>, [">= 2.0.0"])
s.add_development_dependency(%q<hoe>, [">= 2.1.0"]) s.add_development_dependency(%q<hoe>, [">= 2.1.0"])
s.add_development_dependency(%q<minitest>, [">= 1.6.0"]) s.add_development_dependency(%q<minitest>, [">= 1.6.0"])
s.add_development_dependency(%q<hoe>, [">= 2.8.0"]) s.add_development_dependency(%q<hoe>, [">= 2.8.0"])
else else
s.add_dependency(%q<minitest>, [">= 2.0.0"])
s.add_dependency(%q<hoe>, [">= 2.1.0"]) s.add_dependency(%q<hoe>, [">= 2.1.0"])
s.add_dependency(%q<minitest>, [">= 1.6.0"]) s.add_dependency(%q<minitest>, [">= 1.6.0"])
s.add_dependency(%q<hoe>, [">= 2.8.0"]) s.add_dependency(%q<hoe>, [">= 2.8.0"])
end end
else else
s.add_dependency(%q<minitest>, [">= 2.0.0"])
s.add_dependency(%q<hoe>, [">= 2.1.0"]) s.add_dependency(%q<hoe>, [">= 2.1.0"])
s.add_dependency(%q<minitest>, [">= 1.6.0"]) s.add_dependency(%q<minitest>, [">= 1.6.0"])
s.add_dependency(%q<hoe>, [">= 2.8.0"]) s.add_dependency(%q<hoe>, [">= 2.8.0"])
Expand Down

0 comments on commit 095a624

Please sign in to comment.