Sha256: 626c462a5431ca97d8a179ba163c32525d662eacf00f1082dcb8e603660f6a48
Contents?: true
Size: 1.45 KB
Versions: 4
Compression:
Stored size: 1.45 KB
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "money/version" Gem::Specification.new do |s| s.name = "money" s.version = Money::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Shane Emmons"] s.email = ["shane@emmons.io"] s.homepage = "http://rubymoney.github.io/money" s.summary = "A Ruby Library for dealing with money and currency conversion." s.description = "A Ruby Library for dealing with money and currency conversion." s.license = "MIT" s.post_install_message = <<MSG Please note the following API changes in Money version 6 - Money#amount, Money#dollars methods now return instances of BigDecimal (rather than Float). Please read the migration notes at https://github.com/RubyMoney/money#migration-notes and choose the migration that best suits your application. Test responsibly :-) MSG s.add_dependency "i18n", "~> 0.6.4" s.add_dependency "monetize", "~> 0.1.3" s.add_development_dependency "bundler", "~> 1.3" s.add_development_dependency "rake" s.add_development_dependency "rspec", "~> 2.14" s.add_development_dependency "yard", "~> 0.8" s.add_development_dependency "kramdown", "~> 1.1" s.files = `git ls-files`.split($/) s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) } s.test_files = s.files.grep(%r{^(test|spec|features)/}) s.require_paths = ["lib"] end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
money-6.0.1 | money.gemspec |
money-6.0.1.beta4 | money.gemspec |
money-6.0.1.beta3 | money.gemspec |
money-6.0.1.beta2 | money.gemspec |