inherited_resources.gemspec 1.0 KB

1234567891011121314151617181920212223
  1. # -*- encoding: utf-8 -*-
  2. $:.push File.expand_path("../lib", __FILE__)
  3. require "inherited_resources/version"
  4. Gem::Specification.new do |s|
  5. s.name = "inherited_resources"
  6. s.version = InheritedResources::VERSION.dup
  7. s.platform = Gem::Platform::RUBY
  8. s.summary = "Inherited Resources speeds up development by making your controllers inherit all restful actions so you just have to focus on what is important."
  9. s.email = "developers@plataformatec.com.br"
  10. s.homepage = "http://github.com/josevalim/inherited_resources"
  11. s.description = "Inherited Resources speeds up development by making your controllers inherit all restful actions so you just have to focus on what is important."
  12. s.authors = ['José Valim']
  13. s.rubyforge_project = "inherited_resources"
  14. s.files = `git ls-files`.split("\n")
  15. s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
  16. s.require_paths = ["lib"]
  17. s.add_dependency("responders", "~> 0.6")
  18. s.add_dependency("has_scope", "~> 0.5.0")
  19. end