39 lines
1.8 KiB
Ruby
39 lines
1.8 KiB
Ruby
# -*- encoding: utf-8 -*-
|
|
|
|
Gem::Specification.new do |s|
|
|
s.name = "arel"
|
|
s.version = "3.0.2"
|
|
|
|
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.date = "2012-02-21"
|
|
s.description = "Arel is a SQL AST manager for Ruby. It\n\n1. Simplifies the generation of complex SQL queries\n2. Adapts to various RDBMS systems\n\nIt is intended to be a framework framework; that is, you can build your own ORM\nwith it, focusing on innovative object and collection modeling as opposed to\ndatabase compatibility and query generation."
|
|
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.files = ["History.txt", "MIT-LICENSE.txt", "Manifest.txt", "README.markdown"]
|
|
s.homepage = "http://github.com/rails/arel"
|
|
s.rdoc_options = ["--main", "README.markdown"]
|
|
s.require_paths = ["lib"]
|
|
s.rubyforge_project = "arel"
|
|
s.rubygems_version = "1.8.21"
|
|
s.summary = "Arel is a SQL AST manager for Ruby"
|
|
|
|
if s.respond_to? :specification_version then
|
|
s.specification_version = 3
|
|
|
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
s.add_development_dependency(%q<minitest>, ["~> 2.11"])
|
|
s.add_development_dependency(%q<rdoc>, ["~> 3.10"])
|
|
s.add_development_dependency(%q<hoe>, ["~> 2.13"])
|
|
else
|
|
s.add_dependency(%q<minitest>, ["~> 2.11"])
|
|
s.add_dependency(%q<rdoc>, ["~> 3.10"])
|
|
s.add_dependency(%q<hoe>, ["~> 2.13"])
|
|
end
|
|
else
|
|
s.add_dependency(%q<minitest>, ["~> 2.11"])
|
|
s.add_dependency(%q<rdoc>, ["~> 3.10"])
|
|
s.add_dependency(%q<hoe>, ["~> 2.13"])
|
|
end
|
|
end
|