-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathonline_migrations.gemspec
More file actions
24 lines (18 loc) · 887 Bytes
/
Copy pathonline_migrations.gemspec
File metadata and controls
24 lines (18 loc) · 887 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
# frozen_string_literal: true
require_relative "lib/online_migrations/version"
Gem::Specification.new do |spec|
spec.name = "online_migrations"
spec.version = OnlineMigrations::VERSION
spec.authors = ["fatkodima"]
spec.email = ["fatkodima123@gmail.com"]
spec.summary = "Catch unsafe PostgreSQL migrations in development and run them easier in production"
spec.homepage = "https://github.com/fatkodima/online_migrations"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 3.3")
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/master/CHANGELOG.md"
spec.files = Dir["**/*.{md,txt}", "{lib}/**/*"]
spec.require_paths = ["lib"]
spec.add_dependency "activerecord", ">= 7.2"
end