Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,9 @@ end
appraise "rails-6" do
gem "rails", "~> 6.0"
end

if RUBY_VERSION >= "2.7"
appraise "rails-7" do
gem "rails", "~> 7.0.0.alpha2"
end
end
2 changes: 1 addition & 1 deletion activerecord-postgres_enum.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.5"

spec.add_runtime_dependency "activerecord", ">= 5", "< 6.2"
spec.add_runtime_dependency "activerecord", ">= 5"
spec.add_runtime_dependency "pg"

spec.add_development_dependency "appraisal", "~> 2.2"
Expand Down