forked from RaSiel93/nbrb_currency
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnbrb_currency.gemspec
25 lines (20 loc) · 1.08 KB
/
nbrb_currency.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = "nbrb_currency"
s.version = "1.1.0"
s.platform = Gem::Platform::RUBY
s.authors = ["Aleks Grebennik", "Dmitry Artyomov"]
s.email = ["aleks.grebennik@gmail.com", "artyomovd@yandex.ru"]
s.homepage = "http://github.com/slbug/nbrb_currency"
s.summary = %q{Calculates exchange rates based on rates from National Bank of the Republic of Belarus. Money gem compatible.}
s.description = %q{This gem reads exchange rates from the National Bank of the Republic of Belarus website. It uses it to calculates exchange rates. It is compatible with the money gem}
s.required_rubygems_version = ">= 1.3.6"
s.add_dependency "nokogiri"
s.add_dependency "money", "~> 6.13"
s.add_development_dependency "rspec", ">= 2.0.0"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end