1234567891011121314151617181920212223242526272829303132 |
- # -*- encoding: utf-8 -*-
- Gem::Specification.new do |s|
- s.name = "inherited_resources"
- s.version = "1.3.1"
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
- s.authors = ["Jos\u{e9} Valim"]
- s.date = "2012-03-08"
- 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."
- s.email = "developers@plataformatec.com.br"
- s.homepage = "http://github.com/josevalim/inherited_resources"
- s.require_paths = ["lib"]
- s.rubyforge_project = "inherited_resources"
- s.rubygems_version = "1.8.24"
- 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."
- 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_runtime_dependency(%q<responders>, ["~> 0.6"])
- s.add_runtime_dependency(%q<has_scope>, ["~> 0.5.0"])
- else
- s.add_dependency(%q<responders>, ["~> 0.6"])
- s.add_dependency(%q<has_scope>, ["~> 0.5.0"])
- end
- else
- s.add_dependency(%q<responders>, ["~> 0.6"])
- s.add_dependency(%q<has_scope>, ["~> 0.5.0"])
- end
- end
|