forked from countries/countries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
countries.gemspec
21 lines (18 loc) · 953 Bytes
/
countries.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/countries/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Josh Robinson", "Joe Corcoran"]
gem.email = ["[email protected]"]
gem.description = %q{All sorts of useful information about every country packaged as pretty little country objects. It includes data from ISO 3166}
gem.summary = %q{Gives you a country object full of all sorts of useful information.}
gem.homepage = "http://github.com/hexorx/countries"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "countries"
gem.require_paths = ["lib"]
gem.version = Countries::VERSION
gem.add_dependency('currencies', '~> 0.4.2')
gem.add_development_dependency "rspec"
gem.add_development_dependency "yard"
end