forked from rgeo/rgeo-activerecord
-
Notifications
You must be signed in to change notification settings - Fork 2
/
rgeo-activerecord.gemspec
25 lines (20 loc) · 1.12 KB
/
rgeo-activerecord.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
require "./lib/rgeo/active_record/version"
Gem::Specification.new do |spec|
spec.name = "rgeo-activerecord"
spec.summary = "An RGeo module providing spatial extensions to ActiveRecord."
spec.description = "RGeo is a geospatial data library for Ruby. RGeo::ActiveRecord is an optional RGeo module providing some spatial extensions to ActiveRecord, as well as common tools used by RGeo-based spatial adapters."
spec.version = RGeo::ActiveRecord::VERSION
spec.author = "Daniel Azuma, Tee Parham"
spec.email = "[email protected], [email protected]"
spec.homepage = "https://github.com/rgeo/rgeo-activerecord"
spec.files = Dir["lib/**/*", "README.md", "History.md", "LICENSE.txt"]
spec.platform = Gem::Platform::RUBY
spec.required_ruby_version = ">= 2.2.2"
spec.add_dependency "rgeo", "~> 0.3"
spec.add_dependency "activerecord", "~> 5.1"
spec.add_development_dependency "minitest", "~> 5.8"
spec.add_development_dependency "rake", "~> 12.0"
spec.add_development_dependency "mocha", "~> 1.1"
spec.add_development_dependency "appraisal", "~> 2.1"
spec.add_development_dependency "rgeo-geojson", ">= 0.4.1"
end