# encoding: utf-8 $:.push File.expand_path("../lib", __FILE__) require 'uncharted/version' Gem::Specification.new do |s| s.name = "uncharted" s.homepage = "http://github.com/cenize/uncharted" s.summary = "ISO 3166 Countries & territories codes (NOT READY FOR USE YET!)" s.description = "Provide ISO 3166 codes and english name for countries and their political divisions" s.version = Uncharted::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Gilson Ferraz"] s.email = ["gferraz@cenize.com"] 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.required_ruby_version = '>= 1.9' s.add_development_dependency 'minitest' # minitest latest gem s.add_development_dependency 'purdytest' # colored tests for minitest https://github.com/tenderlove/purdytest s.add_development_dependency 'yard' # Doc generator end