-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvalues_for.gemspec
More file actions
38 lines (31 loc) · 1.24 KB
/
values_for.gemspec
File metadata and controls
38 lines (31 loc) · 1.24 KB
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
Gem::Specification.new do |s|
s.name = %q{values_for}
s.version = "0.0.9"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Mal McKay and Justin Leitgeb"]
s.date = %q{2009-06-17}
s.description = %q{Adds an enumerable attribute to an ActiveRecord-backed class}
s.email = %q{justin@mobilecommons.com}
s.files = ["values_for.gemspec", "lib/values_for.rb", "LICENSE", "Rakefile", "README.rdoc", "spec/values_for_spec.rb", "spec/spec_helper.rb"]
s.has_rdoc = true
s.homepage = %q{http://github.com/mcommons/values_for}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.1}
s.summary = %q{Adds an enumerable attribute to an ActiveRecord-backed class}
s.test_files = ["spec/values_for_spec.rb", "spec/spec_helper.rb"]
s.extra_rdoc_files = [ "README.rdoc" ]
s.rdoc_options += [
'--title', 'Enum For',
'--main', 'README.rdoc',
'--line-numbers',
'--inline-source'
]
%w[ activerecord activesupport ].each do |dep|
s.add_dependency(dep)
end
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2
end
end