forked from jeroenj/geo_ip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
geo_ip.gemspec
23 lines (20 loc) · 909 Bytes
/
geo_ip.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
Gem::Specification.new do |s|
s.name = 'geo_ip'
s.version = '0.6.2'
s.required_ruby_version = '>= 1.9.2'
s.platform = Gem::Platform::RUBY
s.authors = ['Jeroen Jacobs']
s.email = '[email protected]'
s.homepage = 'http://jeroenj.be'
s.summary = 'Retreive the geolocation of an IP address based on the ipinfodb.com webservice'
s.description = 'A call to the ipinfodb.com will be done to retreive the geolocation based on the IP address. No need to include a database file in the application.'
s.files = Dir['README.md', 'CHANGES.md', 'LICENSE', 'lib/**/*']
s.test_files = Dir.glob('spec/**/*')
s.require_paths = ['lib']
s.add_dependency 'rest-client', '~> 1.6'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '~> 2.5'
s.add_development_dependency 'webmock', '~> 1.7.10'
end