-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpg_generated_column_support.gemspec
24 lines (19 loc) · 1.14 KB
/
pg_generated_column_support.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
require_relative "lib/pg_generated_column_support/version"
Gem::Specification.new do |spec|
spec.name = "pg_generated_column_support"
spec.version = PgGeneratedColumnSupport::VERSION
spec.authors = ["Jeremy Baker"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/retailzipline/pg_generated_column_support"
spec.summary = "Adds support for postgresql generated columns in ActiveRecord 6.1.5"
spec.description = "Rails 6.1.5 backport for the Rails 7 generated column support"
spec.license = "MIT"
# 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.
spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/retailzipline/pg_generated_column_support"
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.add_dependency "activerecord", "~> 6.1.5"
spec.add_dependency "pg", "~> 1.2.3"
end