File tree Expand file tree Collapse file tree 5 files changed +29
-6
lines changed Expand file tree Collapse file tree 5 files changed +29
-6
lines changed Original file line number Diff line number Diff line change @@ -2,14 +2,17 @@ cache: bundler
2
2
sudo : false
3
3
language : ruby
4
4
rvm :
5
- - 2.4.0
6
- - 2.3.3
7
- - 2.2.7
5
+ - 2.6.0
6
+ - 2.5.0
7
+ - 2.4.3
8
+ - 2.3.6
9
+ - 2.2.9
8
10
# these haven't been passing for a while:
9
11
# - jruby-head
10
12
# - rbx
11
13
12
14
gemfile :
15
+ - gemfiles/activerecord_5.2.gemfile
13
16
- gemfiles/activerecord_5.1.gemfile
14
17
- gemfiles/activerecord_5.0.gemfile
15
18
- gemfiles/activerecord_4.2.gemfile
@@ -27,3 +30,4 @@ matrix:
27
30
- gemfile : gemfiles/activerecord_edge.gemfile
28
31
- rvm : jruby-head
29
32
- rvm : rbx
33
+ - rvm : 2.6.0
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ source "https://rubygems.org"
5
5
gem "activerecord", "~> 4.2.0"
6
6
7
7
platforms :ruby, :rbx do
8
- gem "mysql2"
8
+ gem "mysql2", '~> 0.4.10'
9
9
gem "pg", '~> 0.21.0'
10
10
gem "sqlite3"
11
11
end
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ source "https://rubygems.org"
5
5
gem "activerecord", "~> 5.0.0"
6
6
7
7
platforms :ruby, :rbx do
8
- gem "mysql2"
8
+ gem "mysql2", '~> 0.4.10'
9
9
gem "pg", '~> 0.21.0'
10
10
gem "sqlite3"
11
11
end
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ source "https://rubygems.org"
5
5
gem "activerecord", "~> 5.1.0"
6
6
7
7
platforms :ruby, :rbx do
8
- gem "mysql2"
8
+ gem "mysql2", '~> 0.4.10'
9
9
gem "pg"
10
10
gem "sqlite3"
11
11
end
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", '~> 5.2.0.rc2'
6
+
7
+ platforms :ruby, :rbx do
8
+ gem "mysql2", '~> 0.4.10'
9
+ gem "pg"
10
+ gem "sqlite3"
11
+ end
12
+
13
+ platforms :jruby do
14
+ gem "activerecord-jdbcmysql-adapter"
15
+ gem "activerecord-jdbcpostgresql-adapter"
16
+ gem "activerecord-jdbcsqlite3-adapter"
17
+ end
18
+
19
+ gemspec :path => "../"
You can’t perform that action at this time.
0 commit comments