-
-
Notifications
You must be signed in to change notification settings - Fork 246
/
activerecord-postgis-adapter.gemspec
36 lines (29 loc) · 1.45 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
35
36
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.email = ["kfdoggett@gmail.com", "buonomo.ulysse@gmail.com", "terminale@gmail.com"]
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
# ruby-lang.org/en/downloads/branches
spec.required_ruby_version = ">= 3.1.0"
spec.add_dependency "activerecord", "~> 7.2.0"
spec.add_dependency "rgeo-activerecord", "~> 8.0.0"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "minitest", "~> 5.4"
spec.add_development_dependency "minitest-excludes", "~> 2.0"
spec.add_development_dependency "benchmark-ips", "~> 2.12"
spec.add_development_dependency "rubocop", "~> 1.50"
spec.metadata = {
"funding_uri" => "https://opencollective.com/rgeo",
"rubygems_mfa_required" => "true"
}
end