forked from square/rack-geo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrack-geo.gemspec
24 lines (21 loc) · 927 Bytes
/
rack-geo.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "rack/geo/version"
Gem::Specification.new do |s|
s.name = "rack-geo"
s.version = Rack::Geo::VERSION::STRING
s.platform = Gem::Platform::RUBY
s.authors = ["Randy Reddig", "Cameron Walters", "Paul McKellar"]
s.email = "[email protected]"
s.homepage = "https://github.com/square/rack-geo"
s.summary = %q{Rack middleware for Geo-Position HTTP headers}
s.description = %q{Parse and serialize geospatial HTTP headers.}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.extra_rdoc_files = ['README.rdoc', 'HISTORY.rdoc', 'LICENSE.txt']
s.require_paths = ["lib"]
s.add_dependency 'rack', '~> 3.1'
s.add_development_dependency 'rake'
s.add_development_dependency 'rack-test', '~> 2.1'
s.add_development_dependency 'rspec', '~> 3.13'
end