File tree Expand file tree Collapse file tree 4 files changed +20
-2
lines changed Expand file tree Collapse file tree 4 files changed +20
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ gemfile:
1212 - gemfiles/rails_5.0.7.gemfile
1313 - gemfiles/rails_5.1.7.gemfile
1414 - gemfiles/rails_5.2.3.gemfile
15+ - gemfiles/rails_6.0.1.gemfile
1516services :
1617 - postgresql
1718 - mysql
@@ -38,6 +39,10 @@ matrix:
3839 exclude :
3940 - rvm : ruby-head
4041 gemfile : gemfiles/rails_4.2.11.gemfile
42+ - rvm : 2.3.8
43+ gemfile : gemfiles/rails_6.0.1.gemfile
44+ - rvm : 2.4.9
45+ gemfile : gemfiles/rails_6.0.1.gemfile
4146before_script :
4247 - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
4348 - chmod +x ./cc-test-reporter
Original file line number Diff line number Diff line change @@ -16,6 +16,10 @@ RAILS_VERSIONS = {
1616 'activerecord-oracle_enhanced-adapter' => '~> 5.2.0' ,
1717 'ruby-oci8' => '' ,
1818 } ,
19+ '6.0.1' => {
20+ 'activerecord-oracle_enhanced-adapter' => '~> 6.0.0' ,
21+ 'ruby-oci8' => '' ,
22+ } ,
1923} . freeze
2024
2125RAILS_VERSIONS . each do |version , gems |
Original file line number Diff line number Diff line change 1111
1212It's tested against :
1313
14- * Rails 4.2.11 / 5.0.7 / 5.1.7 / 5.2.3
15- * Ruby 2.3.8 / 2.4.5 / 2.5.3 / 2.6.2
14+ * Rails 4.2.11 / 5.0.7 / 5.1.7 / 5.2.3 / 6.0.1
15+ * Ruby 2.3.8 / 2.4.9 / 2.5.7 / 2.6.5
1616* Postgresql 9.6
1717* MySQL 5.6
1818* Oracle XE 11.2 (thanks to [ travis-oracle] ( https://github.com/cbandy/travis-oracle ) )
Original file line number Diff line number Diff line change 1+ # This file was generated by Appraisal
2+
3+ source "https://rubygems.org"
4+
5+ gem "rails", "6.0.1"
6+ gem "activerecord-oracle_enhanced-adapter", "~> 6.0.0"
7+ gem "ruby-oci8" if ENV["DB_ADAPTER"] == "oracle_enhanced"
8+
9+ gemspec path: "../"
You can’t perform that action at this time.
0 commit comments