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:
12
12
- gemfiles/rails_5.0.7.gemfile
13
13
- gemfiles/rails_5.1.7.gemfile
14
14
- gemfiles/rails_5.2.3.gemfile
15
+ - gemfiles/rails_6.0.1.gemfile
15
16
services :
16
17
- postgresql
17
18
- mysql
@@ -38,6 +39,10 @@ matrix:
38
39
exclude :
39
40
- rvm : ruby-head
40
41
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
41
46
before_script :
42
47
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
43
48
- chmod +x ./cc-test-reporter
Original file line number Diff line number Diff line change @@ -16,6 +16,10 @@ RAILS_VERSIONS = {
16
16
'activerecord-oracle_enhanced-adapter' => '~> 5.2.0' ,
17
17
'ruby-oci8' => '' ,
18
18
} ,
19
+ '6.0.1' => {
20
+ 'activerecord-oracle_enhanced-adapter' => '~> 6.0.0' ,
21
+ 'ruby-oci8' => '' ,
22
+ } ,
19
23
} . freeze
20
24
21
25
RAILS_VERSIONS . each do |version , gems |
Original file line number Diff line number Diff line change 11
11
12
12
It's tested against :
13
13
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
16
16
* Postgresql 9.6
17
17
* MySQL 5.6
18
18
* 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