forked from activeadmin/inherited_resources
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinherited_resources.gemspec
71 lines (67 loc) · 2.48 KB
/
inherited_resources.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{inherited_resources}
s.version = "0.9.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Jos\303\251 Valim"]
s.date = %q{2009-09-01}
s.description = %q{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 = %q{[email protected]}
s.extra_rdoc_files = [
"README.rdoc"
]
s.files = [
"CHANGELOG",
"MIT-LICENSE",
"README.rdoc",
"Rakefile",
"VERSION",
"lib/inherited_resources.rb",
"lib/inherited_resources/actions.rb",
"lib/inherited_resources/base.rb",
"lib/inherited_resources/base_helpers.rb",
"lib/inherited_resources/belongs_to_helpers.rb",
"lib/inherited_resources/class_methods.rb",
"lib/inherited_resources/dsl.rb",
"lib/inherited_resources/dumb_responder.rb",
"lib/inherited_resources/has_scope_helpers.rb",
"lib/inherited_resources/legacy/respond_to.rb",
"lib/inherited_resources/legacy/responder.rb",
"lib/inherited_resources/polymorphic_helpers.rb",
"lib/inherited_resources/singleton_helpers.rb",
"lib/inherited_resources/url_helpers.rb"
]
s.homepage = %q{http://github.com/josevalim/inherited_resources}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{inherited_resources}
s.rubygems_version = %q{1.3.5}
s.summary = %q{Inherited Resources speeds up development by making your controllers inherit all restful actions so you just have to focus on what is important.}
s.test_files = [
"test/respond_to_test.rb",
"test/customized_belongs_to_test.rb",
"test/nested_belongs_to_test.rb",
"test/base_test.rb",
"test/redirect_to_test.rb",
"test/has_scope_test.rb",
"test/class_methods_test.rb",
"test/association_chain_test.rb",
"test/aliases_test.rb",
"test/flash_test.rb",
"test/url_helpers_test.rb",
"test/belongs_to_test.rb",
"test/polymorphic_test.rb",
"test/defaults_test.rb",
"test/singleton_test.rb",
"test/optional_belongs_to_test.rb",
"test/test_helper.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
else
end
else
end
end