-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathgeonames_dump.gemspec
20 lines (18 loc) · 980 Bytes
/
geonames_dump.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/geonames_dump/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Alex Pooley", "Thomas Kienlen"]
gem.email = ["[email protected]"]
gem.description = %q{GeonamesDump import geographic data from geonames project into your application, avoiding to use external service like Google Maps.}
gem.summary = %q{Import data from Geonames}
gem.homepage = "https://github.com/kmmndr/geonames_dump"
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 = "geonames_dump"
gem.require_paths = ["lib"]
gem.version = GeonamesDump::VERSION
gem.add_runtime_dependency 'ruby-progressbar'
gem.add_runtime_dependency 'activerecord-reset-pk-sequence'
gem.add_runtime_dependency 'rubyzip', '> 1.0.0'
end