forked from rgeo/activerecord-postgis-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactiverecord-postgis-adapter.gemspec
34 lines (27 loc) · 1.34 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
32
33
34
require_relative "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 = ">= 3.1.0"
spec.add_dependency "activerecord", "~> 7.2.0.beta2"
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", "~> 2.4"
spec.add_development_dependency "benchmark-ips", "~> 2.12"
spec.add_development_dependency "rubocop", "~> 1.50"
spec.metadata = {
"rubygems_mfa_required" => "true"
}
end