forked from countries/countries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
countries.gemspec
24 lines (21 loc) · 1.13 KB
/
countries.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/countries/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ['Josh Robinson', 'Joe Corcoran', 'Russell Osborne']
gem.email = ['[email protected]', '[email protected]']
gem.description = 'All sorts of useful information about every country packaged as pretty little country objects. It includes data from ISO 3166'
gem.summary = '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($OUTPUT_RECORD_SEPARATOR)
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.license = 'MIT'
gem.add_dependency('i18n_data', '~> 0.7.0')
gem.add_dependency('money', '~> 6.7')
gem.add_dependency('unicode_utils', '~> 1.4')
gem.add_development_dependency('rspec', '>= 3')
gem.add_development_dependency('activesupport', '>= 3')
end