-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathactive_storage-postgresql.gemspec
27 lines (22 loc) · 1.09 KB
/
active_storage-postgresql.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
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "active_storage/postgresql/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "active_storage-postgresql"
s.version = ActiveStorage::PostgreSQL::VERSION
s.authors = ["Lachlan Sylvester"]
s.email = ["lachlan.sylvester@hypothetical.com.au"]
s.homepage = "https://github.com/lsylvester/active_storage-postgresql"
s.summary = "PostgreSQL Adapter for Active Storage"
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.add_dependency "rails", ">= 6.0"
s.add_dependency "pg", ">= 1.0", "< 2.0",
# Avoid incompatible pg versions, see: https://github.com/ged/ruby-pg/pull/498
"!= 1.3.0", "!= 1.3.1", "!= 1.3.2", "!= 1.3.3", "!= 1.3.4", "!= 1.3.5",
"!= 1.4.0", "!= 1.4.1", "!= 1.4.2", "!= 1.4.3", "!= 1.4.4", "!= 1.4.5"
s.add_development_dependency "pry", "~> 0.11"
s.add_development_dependency "database_cleaner", "~> 1.7"
s.add_development_dependency "appraisal"
end