Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ignore Rails HEAD Appraisal until rails new fixed #419

Merged
merged 1 commit into from
Oct 10, 2021
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
9 changes: 5 additions & 4 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@ if ruby_27_or_higher && !jruby
# activerecord-jdbcpostgresql-adapter does not have a compatible version

appraise "rails-7.0" do
gem "rails", "~> 7.0.0.alpha"
gem "rails", "~> 7.0.0.alpha2"
end

appraise "rails-head" do
gem "rails", github: "rails/rails", branch: "main"
end
# https://github.com/rails/rails/issues/43422
# appraise "rails-head" do
# gem "rails", github: "rails/rails", branch: "main"
# end
end
1 change: 0 additions & 1 deletion gemfiles/rails_5.2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ source "https://rubygems.org"
gem "activerecord-jdbcpostgresql-adapter", platforms: [:jruby]
gem "appraisal", branch: "fix-bundle-env", git: "https://github.com/bensheldon/appraisal.git"
gem "pg", platforms: [:mri, :mingw, :x64_mingw]
gem "puma", "5.4.0"
gem "rails", "~> 5.2.0"

platforms :ruby do
Expand Down
1 change: 0 additions & 1 deletion gemfiles/rails_6.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ source "https://rubygems.org"
gem "activerecord-jdbcpostgresql-adapter", platforms: [:jruby]
gem "appraisal", branch: "fix-bundle-env", git: "https://github.com/bensheldon/appraisal.git"
gem "pg", platforms: [:mri, :mingw, :x64_mingw]
gem "puma", "5.4.0"
gem "rails", "~> 6.0.0"

platforms :ruby do
Expand Down
1 change: 0 additions & 1 deletion gemfiles/rails_6.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ source "https://rubygems.org"
gem "activerecord-jdbcpostgresql-adapter", platforms: [:jruby]
gem "appraisal", branch: "fix-bundle-env", git: "https://github.com/bensheldon/appraisal.git"
gem "pg", platforms: [:mri, :mingw, :x64_mingw]
gem "puma", "5.4.0"
gem "rails", "~> 6.1.0"

platforms :ruby do
Expand Down
1 change: 0 additions & 1 deletion gemfiles/rails_7.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ source "https://rubygems.org"
gem "activerecord-jdbcpostgresql-adapter", platforms: [:jruby]
gem "appraisal", branch: "fix-bundle-env", git: "https://github.com/bensheldon/appraisal.git"
gem "pg", platforms: [:mri, :mingw, :x64_mingw]
gem "puma", "5.4.0"
gem "rails", "~> 7.0.0.alpha"

platforms :ruby do
Expand Down
1 change: 0 additions & 1 deletion gemfiles/rails_head.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ source "https://rubygems.org"
gem "activerecord-jdbcpostgresql-adapter", platforms: [:jruby]
gem "appraisal", branch: "fix-bundle-env", git: "https://github.com/bensheldon/appraisal.git"
gem "pg", platforms: [:mri, :mingw, :x64_mingw]
gem "puma", "5.4.0"
gem "rails", branch: "main", git: "https://github.com/rails/rails.git"

platforms :ruby do
Expand Down