-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcurrency_shushugah.gemspec
More file actions
24 lines (20 loc) · 942 Bytes
/
currency_shushugah.gemspec
File metadata and controls
24 lines (20 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'currency_shushugah/version'
Gem::Specification.new do |spec|
spec.name = 'currency_shushugah'
spec.version = CurrencyShushugah::VERSION
spec.author = ['Yonatan Miller']
spec.email = ['brombacher1@gmail.com']
spec.summary = 'Converts currencies and accepts conversion rates'
spec.homepage = 'https://github.com/shushugah/currency_shushugah'
spec.license = 'MIT'
spec.files = Dir.glob('{bin,lib}/**/*') + %w[LICENSE.txt README.md]
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', '~> 1.15'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'simplecov'
spec.add_development_dependency 'codeclimate-test-reporter', '~> 1.0.0'
end