Sha256: e6e984d51236426df23d91a1725847c5285004a76098321101c788f23efdeef6
Contents?: true
Size: 1.63 KB
Versions: 16
Compression:
Stored size: 1.63 KB
Contents
# -*- encoding: utf-8 -*- Gem::Specification.new do |s| s.name = "arel" s.version = "3.0.0" 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-01-12" 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.15" 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<hoe>, ["~> 2.12"]) s.add_development_dependency(%q<rdoc>, ["~> 3.10"]) else s.add_dependency(%q<hoe>, ["~> 2.12"]) s.add_dependency(%q<rdoc>, ["~> 3.10"]) end else s.add_dependency(%q<hoe>, ["~> 2.12"]) s.add_dependency(%q<rdoc>, ["~> 3.10"]) end end
Version data entries
16 entries across 16 versions & 1 rubygems