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

Rails 6 Support - Official Branch #561

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
Dusting off config files
Thiago Pradi committed Dec 2, 2020
commit bc5c23316027bac7ca77a76c35635550474f830e
10 changes: 4 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -4,14 +4,12 @@ env:
before_script:
- "bundle exec rake db:prepare"
rvm:
- 2.2.7
- 2.3.4
- 2.4.1
- 2.5.8
- 2.6.6
- 2.7.2
gemfile:
- gemfiles/rails42.gemfile
- gemfiles/rails5.gemfile
- gemfiles/rails51.gemfile
- gemfiles/rails52.gemfile
- gemfiles/rails6.gemfile
notifications:
recipients:
- gabriel.sobrinho@gmail.com
16 changes: 4 additions & 12 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -1,16 +1,8 @@
appraise "rails42" do
gem "activerecord", "~> 4.2.0"
end

appraise "rails5" do
gem "activerecord", "~> 5.0.0"
end

appraise "rails51" do
gem "activerecord", "~> 5.1.0"
end

appraise "rails52" do
gem "activerecord", "~> 5.2.0"
end

appraise "rails6" do
gem "activerecord", "~> 6.0.0"
end
# vim: ft=ruby
2 changes: 1 addition & 1 deletion ar-octopus.gemspec
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
'Octopus now stores schema version information in each shard and migrations will not ' \
'work properly unless this task is invoked.'

s.required_ruby_version = '>= 2.2.0'
s.required_ruby_version = '>= 2.5.0'

s.add_dependency 'activerecord', '>= 4.2.0'
s.add_dependency 'activesupport', '>= 4.2.0'
7 changes: 7 additions & 0 deletions gemfiles/rails6.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "activerecord", "~> 6.0.0"

gemspec path: "../"