Sha256: 6633d43957e0665388bc603896e8c3581db3ce6709bb9e5307d0b2940b2f3a24
Contents?: true
Size: 1.38 KB
Versions: 1
Compression:
Stored size: 1.38 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |spec| spec.name = "activerecord-cockroachdb-adapter" spec.version = "5.2.3" spec.licenses = ["Apache-2.0"] spec.authors = ["Cockroach Labs"] spec.email = ["cockroach-db@googlegroups.com"] spec.summary = "CockroachDB adapter for ActiveRecord." spec.description = "Allows the use of CockroachDB as a backend for ActiveRecord and Rails apps." spec.homepage = "https://github.com/cockroachdb/activerecord-cockroachdb-adapter" spec.add_dependency "activerecord", "~> 5.2" spec.add_dependency "pg", ">= 0.20" spec.add_dependency "rgeo-activerecord", "~> 7.0.0" # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' # to allow pushing to a single host or delete this section to allow pushing to any host. if spec.respond_to?(:metadata) spec.metadata['allowed_push_host'] = "https://rubygems.org" else raise "RubyGems 2.0 or newer is required to protect against " \ "public gem pushes." end spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
activerecord-cockroachdb-adapter-5.2.3 | activerecord-cockroachdb-adapter.gemspec |