forked from timcowlishaw/acts_as_money
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathacts_as_money.gemspec
33 lines (29 loc) · 1.17 KB
/
acts_as_money.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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{acts_as_money}
s.version = "0.2.4"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Tim Cowlishaw", "Bryan Donovan"]
s.date = %q{2011-05-28}
s.email = %q{[email protected]}
s.extra_rdoc_files = ["README"]
s.files = ["README", "test", "lib/acts_as_money.rb"]
s.homepage = %q{http://github.com/bdondo/acts_as_money}
s.rdoc_options = ["--main", "README"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.5.2}
s.summary = %q{A plugin allowing easy serialization of Money values (from the money gem) as attributes on activerecord objects}
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<money>, [">= 3.6.0"])
s.add_runtime_dependency(%q<activerecord>, [">= 0"])
else
s.add_dependency(%q<money>, [">= 3.6.0"])
s.add_dependency(%q<activerecord>, [">= 0"])
end
else
s.add_dependency(%q<money>, [">= 3.6.0"])
s.add_dependency(%q<activerecord>, [">= 0"])
end
end