Sha256: 7d998f9b4f5b674d4d5784d909669e8ba0f73599ed6d9c2106987cb8a8a319c2
Contents?: true
Size: 1.08 KB
Versions: 6
Compression:
Stored size: 1.08 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'xirr/version' Gem::Specification.new do |spec| spec.name = 'xirr' spec.version = Xirr::VERSION spec.authors = ['tubedude'] spec.email = ['beto@trevisan.me'] spec.summary = %q{Calculates XIRR (Bisection and Newton method) of a cashflow} spec.description = %q{Calculates IRR of a Cashflow, simillar to Excels, XIRR formula, but using the Bisection Method and Newton Method.} spec.homepage = 'https://github.com/tubedude/xirr' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '~> 1.6' spec.add_development_dependency 'rake', '~> 10' spec.required_ruby_version = '>=2.0' spec.add_dependency 'activesupport', '~> 4.0' spec.add_development_dependency 'minitest', '~> 5.4' spec.add_development_dependency 'coveralls', '~> 0' end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
xirr-0.2.9 | xirr.gemspec |
xirr-0.2.8 | xirr.gemspec |
xirr-0.2.7 | xirr.gemspec |
xirr-0.2.5 | xirr.gemspec |
xirr-0.2.4 | xirr.gemspec |
xirr-0.2.3 | xirr.gemspec |