Skip to content
Open
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
10 changes: 4 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
- [email protected]
Expand Down
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
Expand Up @@ -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'
Expand Down
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: "../"