forked from rgeo/activerecord-postgis-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
activerecord-postgis-adapter.gemspec
31 lines (25 loc) · 1.21 KB
/
activerecord-postgis-adapter.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
30
31
require "./lib/active_record/connection_adapters/postgis/version"
Gem::Specification.new do |spec|
spec.name = "activerecord-postgis-adapter"
spec.summary = "ActiveRecord adapter for PostGIS, based on RGeo."
spec.description =
"ActiveRecord connection adapter for PostGIS. It is based on the stock " \
"PostgreSQL adapter, and adds built-in support for the spatial extensions "\
"provided by PostGIS. It uses the RGeo library to represent spatial data in Ruby."
spec.version = ActiveRecord::ConnectionAdapters::PostGIS::VERSION
spec.authors = ["Daniel Azuma", "Tee Parham"]
spec.homepage = "http://github.com/rgeo/activerecord-postgis-adapter"
spec.license = "BSD-3-Clause"
spec.files = Dir["lib/**/*", "LICENSE.txt"]
spec.platform = Gem::Platform::RUBY
spec.required_ruby_version = ">= 2.7.0"
spec.add_dependency "activerecord", "~> 7.0.0"
spec.add_dependency "rgeo-activerecord", "~> 7.0.0"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "minitest", "~> 5.4"
spec.add_development_dependency "mocha", "~> 1.1"
spec.metadata = {
"rubygems_mfa_required" => "true"
}
end