https://github.com/RubyMoney/money
Raw File
Tip revision: bf6b0f60c83591f3d0699073e708b255f160c3a3 authored by Shane Emmons on 01 October 2012, 13:44:08 UTC
version bump to 5.0.0.beta1
Tip revision: bf6b0f6
money.gemspec
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
  s.name        = "money"
  s.version     = "5.1.0.beta1"
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Tobias Luetke", "Hongli Lai", "Jeremy McNevin",
                   "Shane Emmons", "Simone Carletti"]
  s.email       = ["semmons99+RubyMoney@gmail.com"]
  s.homepage    = "http://rubymoney.github.com/money"
  s.summary     = "Money and currency exchange support library."
  s.description = "This library aids one in handling money and different currencies."

  s.required_ruby_version     = ">= 1.9.2"
  s.required_rubygems_version = ">= 1.3.6"

  s.add_dependency "i18n",       "~> 0.6.0"

  s.add_development_dependency "rspec",       "~> 2.10.0"
  s.add_development_dependency "yard",        "~> 0.8.1"
  s.add_development_dependency "kramdown",    "~> 0.13.7"

  s.files =  Dir.glob("{config,lib,spec}/**/*")
  s.files += %w(CHANGELOG.md LICENSE README.md)
  s.files += %w(Rakefile money.gemspec)

  s.require_path = "lib"
end
back to top