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

Update Rails 6 appraisal to use actual release version #336

Merged
merged 2 commits into from Jul 7, 2020
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions .travis.yml
Expand Up @@ -12,7 +12,7 @@ gemfile:
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
- gemfiles/rails_6.rc1.gemfile
- gemfiles/rails_6.0.gemfile
script: "bundle exec rspec && bundle exec codeclimate-test-reporter"
before_install:
- sudo add-apt-repository ppa:chris-lea/libsodium -y
Expand All @@ -23,7 +23,7 @@ before_install:
matrix:
fast_finish: true
exclude:
- gemfile: gemfiles/rails_6.rc1.gemfile
- gemfile: gemfiles/rails_6.0.gemfile
rvm: 2.3
- gemfile: gemfiles/rails_6.rc1.gemfile
- gemfile: gemfiles/rails_6.0.gemfile
rvm: 2.4
4 changes: 4 additions & 0 deletions Appraisals
Expand Up @@ -12,3 +12,7 @@ end
appraise 'rails-5.2' do
gem 'rails', '~> 5.2.0'
end

appraise 'rails-6.0' do
gem 'rails', '~> 6.0.0'
end
Expand Up @@ -2,6 +2,6 @@

source "https://rubygems.org"

gem 'rails', '~> 6.0.0.rc1'
gem "rails", "~> 6.0.0"

gemspec path: "../"