public
Fork of aflatter/money
Description: Leetsoft's Money library
Homepage:
Clone URL: git://github.com/collectiveidea/money.git
money / money.gemspec
100644 24 lines (21 sloc) 0.756 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
Gem::Specification.new do |s|
  s.name = 'money'
  s.version = '1.7.4'
  s.summary = "Class aiding in the handling of Money."
  s.description = 'Class aiding in the handling of Money and Currencies. It supports easy pluggable bank objects for customized exchange strategies. Can be used as composite in ActiveRecord tables.'
  s.has_rdoc = true
 
  s.files = %w(
README
MIT-LICENSE
lib/money.rb
lib/money/core_extensions.rb
lib/money/bank/no_exchange_bank.rb
lib/money/bank/variable_exchange_bank.rb
lib/money/rails.rb
lib/support/cattr_accessor.rb
)
 
  s.require_path = 'lib'
  s.authors = ["Brandon Keepers", "Tobias Luetke"]
  s.email = "brandon@opensoul.org"
  s.homepage = "http://github.com/collectiveidea/money"
end