# -*- encoding: utf-8 -*- require File.expand_path('../lib/countries/version', __FILE__) Gem::Specification.new do |gem| gem.authors = ["Josh Robinson", "Joe Corcoran"] gem.email = ["hexorx@gmail.com"] 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