forked from marksweston/finance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
finance.gemspec
22 lines (19 loc) · 871 Bytes
/
finance.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'rubygems'
require 'rake'
SPEC = Gem::Specification.new do |s|
s.name = "finance"
s.version = "2.0.0"
s.author = "Bill Kranec"
s.email = "[email protected]"
s.platform = Gem::Platform::RUBY
s.summary = "a library for financial modelling in Ruby."
s.description = "The finance library provides a Ruby interface for working with interest rates, mortgage amortization, and cashflows (NPV, IRR, etc.)."
s.homepage = "https://rubygems.org/gems/finance"
s.required_ruby_version = '>=1.9'
s.add_dependency 'flt', '>=1.3.0'
s.add_development_dependency 'minitest', '>= 4.7.5'
s.add_development_dependency 'activesupport', '>= 4.0.0'
s.files = FileList['README.md', 'COPYING', 'COPYING.LESSER', 'HISTORY', 'lib/**/*.rb', 'test/**/*.rb'].to_a
s.has_rdoc = true
s.extra_rdoc_files = ['README.md', 'COPYING', 'COPYING.LESSER', 'HISTORY']
end