-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpg_trunk.gemspec
33 lines (26 loc) · 1.05 KB
/
pg_trunk.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
# frozen_string_literal: true
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "pg_trunk/version"
Gem::Specification.new do |spec|
spec.name = "pg_trunk"
spec.version = PGTrunk::VERSION
spec.authors = ["Andrew Kozin"]
spec.email = ["[email protected]"]
spec.summary = "Empower PostgreSQL migrations in Rails app"
spec.description = <<-DESCRIPTION
Adds methods to ActiveRecord::Migration to create and manage PostgreSQL objects in Rails
DESCRIPTION
spec.homepage = "https://github.com/nepalez/pg_trunk"
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/CHANGELOG.md"
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = `git ls-files -z`.split("\x0")
spec.require_paths = ["lib"]
spec.add_dependency "activerecord", ">= 4.0.0"
spec.add_dependency "pg"
spec.add_dependency "railties", ">= 4.0.0"
spec.required_ruby_version = ">= 2.7.0"
end