forked from alexrabarts/iso_country_codes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiso_country_codes.gemspec
More file actions
22 lines (20 loc) · 843 Bytes
/
iso_country_codes.gemspec
File metadata and controls
22 lines (20 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{iso_country_codes}
s.version = File.read('VERSION').strip
s.authors = ["Alex Rabarts"]
s.description = %q{ISO country code and currency library}
s.summary = %q{Provides ISO 3166-1 country codes/names and ISO 4217 currencies.}
s.homepage = %q{http://github.com/alexrabarts/iso_country_codes}
s.email = %q{alexrabarts@gmail.com}
s.extra_rdoc_files = ["README.rdoc"]
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.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ['lib']
s.license = 'MIT'
['bundler', 'shoulda', 'mocha', 'nokogiri'].each do |gem|
s.add_development_dependency gem, '~> 0'
end
end