-
Notifications
You must be signed in to change notification settings - Fork 24
/
safe-pg-migrations.gemspec
35 lines (26 loc) · 1.24 KB
/
safe-pg-migrations.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
# frozen_string_literal: true
$LOAD_PATH.unshift File.expand_path('lib', __dir__)
require 'safe-pg-migrations/version'
Gem::Specification.new do |s|
s.name = 'safe-pg-migrations'
s.summary = 'Make your PG migrations safe.'
s.description = 'Make your PG migrations safe.'
s.version = SafePgMigrations::VERSION
s.authors = ['Matthieu Prat', 'Romain Choquet', 'Thomas Hareau', 'Charles Delannoy']
s.homepage = 'https://github.com/doctolib/safe-pg-migrations'
s.metadata = {
'bug_tracker_uri' => 'https://github.com/doctolib/safe-pg-migrations/issues',
'homepage_uri' => 'https://github.com/doctolib/safe-pg-migrations#safe-pg-migrations',
'mailing_list_uri' => 'https://doctolib.engineering/engineering-news-ruby-rails-react',
'source_code_uri' => 'https://github.com/doctolib/safe-pg-migrations',
'contributors_uri' => 'https://github.com/doctolib/safe-pg-migrations/graphs/contributors',
'rubygems_mfa_required' => 'true',
}
s.files = Dir['LICENSE', 'README.md', 'lib/**/*']
s.require_path = 'lib'
s.license = 'MIT'
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 3.0'
s.add_dependency 'activerecord', '>= 6.1'
s.add_dependency 'activesupport', '>= 6.1'
end