forked from RubyMoney/money
-
Notifications
You must be signed in to change notification settings - Fork 0
/
money.gemspec
33 lines (28 loc) · 1.33 KB
/
money.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# -*- 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', 'Anthony Dmitriyev']
s.email = ['[email protected]', '[email protected]']
s.homepage = "https://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.add_dependency 'i18n', [">= 0.6.4", '<= 2']
s.add_development_dependency "bundler"
s.add_development_dependency "rake"
s.add_development_dependency "rspec", "~> 3.4"
s.add_development_dependency "yard", "~> 0.9.11"
s.add_development_dependency "kramdown", "~> 2.3"
s.files = `git ls-files -z -- config/* lib/* CHANGELOG.md LICENSE money.gemspec README.md`.split("\x0")
s.require_paths = ["lib"]
if s.respond_to?(:metadata)
s.metadata['changelog_uri'] = 'https://github.com/RubyMoney/money/blob/master/CHANGELOG.md'
s.metadata['source_code_uri'] = 'https://github.com/RubyMoney/money/'
s.metadata['bug_tracker_uri'] = 'https://github.com/RubyMoney/money/issues'
end
end