meta_search-1.1.3.gemspec 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # -*- encoding: utf-8 -*-
  2. Gem::Specification.new do |s|
  3. s.name = "meta_search"
  4. s.version = "1.1.3"
  5. s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  6. s.authors = ["Ernie Miller"]
  7. s.date = "2012-02-02"
  8. s.description = "\n Allows simple search forms to be created against an AR3 model\n and its associations, has useful view helpers for sort links\n and multiparameter fields as well.\n "
  9. s.email = "ernie@metautonomo.us"
  10. s.extra_rdoc_files = ["LICENSE", "README.rdoc"]
  11. s.files = ["LICENSE", "README.rdoc"]
  12. s.homepage = "http://metautonomo.us/projects/metasearch/"
  13. s.post_install_message = "\n*** Thanks for installing MetaSearch! ***\nBe sure to check out http://metautonomo.us/projects/metasearch/ for a\nwalkthrough of MetaSearch's features, and click the donate button if\nyou're feeling especially appreciative. It'd help me justify this\n\"open source\" stuff to my lovely wife. :)\n\n"
  14. s.require_paths = ["lib"]
  15. s.rubygems_version = "1.8.24"
  16. s.summary = "Object-based searching (and more) for simply creating search forms."
  17. if s.respond_to? :specification_version then
  18. s.specification_version = 3
  19. if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
  20. s.add_runtime_dependency(%q<activerecord>, ["~> 3.1"])
  21. s.add_runtime_dependency(%q<activesupport>, ["~> 3.1"])
  22. s.add_runtime_dependency(%q<polyamorous>, ["~> 0.5.0"])
  23. s.add_runtime_dependency(%q<actionpack>, ["~> 3.1"])
  24. s.add_development_dependency(%q<shoulda>, ["~> 2.11"])
  25. else
  26. s.add_dependency(%q<activerecord>, ["~> 3.1"])
  27. s.add_dependency(%q<activesupport>, ["~> 3.1"])
  28. s.add_dependency(%q<polyamorous>, ["~> 0.5.0"])
  29. s.add_dependency(%q<actionpack>, ["~> 3.1"])
  30. s.add_dependency(%q<shoulda>, ["~> 2.11"])
  31. end
  32. else
  33. s.add_dependency(%q<activerecord>, ["~> 3.1"])
  34. s.add_dependency(%q<activesupport>, ["~> 3.1"])
  35. s.add_dependency(%q<polyamorous>, ["~> 0.5.0"])
  36. s.add_dependency(%q<actionpack>, ["~> 3.1"])
  37. s.add_dependency(%q<shoulda>, ["~> 2.11"])
  38. end
  39. end