-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathgeoip-c.gemspec
23 lines (18 loc) · 881 Bytes
/
geoip-c.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 -*-
Gem::Specification.new do |s|
s.name = 'geoip-c'
s.version = "0.9.1"
s.licenses = ['WTFPL']
s.authors = ['Ryan Dahl', 'Matt Todd', 'Charles Brian Quinn', 'Michael Sheakoski', 'Silvio Quadri', 'Andy Lindeman']
s.email = ['andy@andylindeman.com', 'mtodd@highgroove.com']
s.summary = "A Binding to the GeoIP C library"
s.description = 'Generic GeoIP lookup tool. Based on the geoip_city RubyGem by Ryan Dahl'
s.homepage = "http://github.com/mtodd/geoip"
s.files = `git ls-files`.split("\n")
s.test_files = ['test/test_geoip.rb']
s.extensions = ["ext/geoip/extconf.rb"]
s.add_development_dependency 'minitest', '~> 5.0'
s.add_development_dependency 'rake', '~> 10.0'
s.add_development_dependency 'rdoc', '~> 4.0'
s.add_development_dependency "rake-compiler", "~> 0.9.1"
end