-
Notifications
You must be signed in to change notification settings - Fork 8
/
geoip2_c.gemspec
29 lines (25 loc) · 1.08 KB
/
geoip2_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
24
25
26
27
28
29
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'geoip2/version'
Gem::Specification.new do |spec|
spec.name = "geoip2_c"
spec.version = GeoIP2::VERSION
spec.authors = ["okkez"]
spec.email = ["[email protected]"]
spec.summary = %q{Write a short summary, because Rubygems requires one.}
spec.description = %q{Write a longer description or delete this line.}
spec.homepage = ""
spec.license = "Apache-2.0"
spec.files = `git ls-files -z --recurse-submodules`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features|benchmark)/})
end
spec.bindir = "bin"
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.extensions = ["ext/geoip2/extconf.rb"]
spec.add_development_dependency "appraisal"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "rake-compiler"
spec.add_development_dependency "test-unit", "~> 3.2"
end