-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathactiverecord-postgresql-cursors.gemspec
More file actions
26 lines (22 loc) · 959 Bytes
/
Copy pathactiverecord-postgresql-cursors.gemspec
File metadata and controls
26 lines (22 loc) · 959 Bytes
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
# frozen_string_literal: true
require File.expand_path('lib/active_record/postgresql_cursors/version', __dir__)
Gem::Specification.new do |s|
s.name = 'activerecord-postgresql-cursors'
s.version = ActiveRecord::PostgreSQLCursors::VERSION
s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
s.required_ruby_version = '>= 3.0'
s.authors = ['J Smith']
s.description = 'Provides some support for PostgreSQL cursors in ActiveRecord.'
s.summary = s.description
s.email = 'dark.panda@gmail.com'
s.license = 'MIT'
s.extra_rdoc_files = [
'README.md'
]
s.files = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR)
s.executables = s.files.grep(%r{^bin/}).map { |f| File.basename(f) }
s.homepage = 'http://github.com/dark-panda/activerecord-postgresql-cursors'
s.require_paths = ['lib']
s.add_dependency('activerecord', ['>= 6.1'])
s.metadata['rubygems_mfa_required'] = 'true'
end