forked from rgeo/rgeo-geojson
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrgeo-geojson.gemspec
19 lines (19 loc) · 984 Bytes
/
rgeo-geojson.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
::Gem::Specification.new do |s_|
s_.name = 'rgeo-geojson'
s_.summary = 'An RGeo module providing GeoJSON encoding and decoding.'
s_.description = "RGeo is a geospatial data library for Ruby. RGeo::GeoJSON is an optional RGeo module providing GeoJSON encoding and decoding services. This module can be used to communicate with location-based web services that understand the GeoJSON format."
s_.version = "#{::File.read('Version').strip}.build#{::Time.now.utc.strftime('%Y%m%d%H%M%S')}"
s_.author = 'Daniel Azuma'
s_.email = 'dazuma@gmail.com'
s_.homepage = "http://virtuoso.rubyforge.org/rgeo-geojson"
s_.rubyforge_project = 'virtuoso'
s_.required_ruby_version = '>= 1.8.7'
s_.files = ::Dir.glob("lib/**/*.rb") +
::Dir.glob("test/**/*.rb") +
::Dir.glob("*.rdoc") +
['Version']
s_.extra_rdoc_files = ::Dir.glob("*.rdoc")
s_.test_files = ::Dir.glob("test/**/tc_*.rb")
s_.platform = ::Gem::Platform::RUBY
s_.add_dependency('rgeo', '>= 0.2.8')
end