arel-3.0.2.gemspec 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # -*- encoding: utf-8 -*-
  2. Gem::Specification.new do |s|
  3. s.name = "arel"
  4. s.version = "3.0.2"
  5. s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  6. s.authors = ["Aaron Patterson", "Bryan Halmkamp", "Emilio Tagua", "Nick Kallen"]
  7. s.date = "2012-02-21"
  8. 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."
  9. s.email = ["aaron@tenderlovemaking.com", "bryan@brynary.com", "miloops@gmail.com", "nick@example.org"]
  10. s.extra_rdoc_files = ["History.txt", "MIT-LICENSE.txt", "Manifest.txt", "README.markdown"]
  11. s.files = ["History.txt", "MIT-LICENSE.txt", "Manifest.txt", "README.markdown"]
  12. s.homepage = "http://github.com/rails/arel"
  13. s.rdoc_options = ["--main", "README.markdown"]
  14. s.require_paths = ["lib"]
  15. s.rubyforge_project = "arel"
  16. s.rubygems_version = "1.8.24"
  17. s.summary = "Arel is a SQL AST manager for Ruby"
  18. if s.respond_to? :specification_version then
  19. s.specification_version = 3
  20. if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
  21. s.add_development_dependency(%q<minitest>, ["~> 2.11"])
  22. s.add_development_dependency(%q<rdoc>, ["~> 3.10"])
  23. s.add_development_dependency(%q<hoe>, ["~> 2.13"])
  24. else
  25. s.add_dependency(%q<minitest>, ["~> 2.11"])
  26. s.add_dependency(%q<rdoc>, ["~> 3.10"])
  27. s.add_dependency(%q<hoe>, ["~> 2.13"])
  28. end
  29. else
  30. s.add_dependency(%q<minitest>, ["~> 2.11"])
  31. s.add_dependency(%q<rdoc>, ["~> 3.10"])
  32. s.add_dependency(%q<hoe>, ["~> 2.13"])
  33. end
  34. end