-
Notifications
You must be signed in to change notification settings - Fork 5
/
geonames_local.gemspec
40 lines (31 loc) · 1.06 KB
/
geonames_local.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/geonames_local/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'geonames_local'
s.version = Geonames::VERSION
s.homepage = 'http://github.com/nofxx/geonames_local'
s.authors = ['Marcos Piccinini']
s.default_executable = 'geonames'
s.description = 'Dumps geonames data to feed a local db'
s.email = '[email protected]'
s.license = 'MIT'
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.name = 'geonames_local'
s.require_paths = ['lib']
s.summary = 'Dumps geonames data for local usage'
s.extra_rdoc_files = [
'MIT-LICENSE',
'README.md'
]
s.add_dependency('mongoid', ['>= 4.0.0'])
s.add_dependency('geopolitical', ['> 0.8.4'])
s.post_install_message = '
Geonames Local
--------------
Use `geonames init` to create a config.yml file.
Or `geonames -c config.yml` to run using a config file.
Have fun!
'
end