File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,10 @@ matrix:
48
48
env : RAILS_VERSION=6-0-stable
49
49
50
50
# Rails 5.2 builds >= 2.2.2
51
+ - rvm : jruby-head
52
+ env :
53
+ - RAILS_VERSION=6-0-stable
54
+ - JRUBY_OPT=--dev
51
55
- rvm : 2.6.3
52
56
env : RAILS_VERSION='~> 5.2.0'
53
57
- rvm : 2.5.3
Original file line number Diff line number Diff line change @@ -13,24 +13,26 @@ when /master/
13
13
gem 'sprockets', :git => 'https://github.com/rails/sprockets.git', :branch => 'master'
14
14
gem 'sprockets-rails', :git => 'https://github.com/rails/sprockets-rails.git', :branch => 'master'
15
15
gem 'puma', "3.12.1"
16
+ gem 'activerecord-jdbcsqlite3-adapter', git: 'https://github.com/jruby/activerecord-jdbc-adapter', platforms: [:jruby]
16
17
when /stable$/
17
18
gem_list = %w[rails railties actionmailer actionpack activerecord activesupport]
18
19
gem_list << 'activejob' if version >= '4-2-stable'
19
20
gem_list << 'actionview' if version >= '4-2-stable'
20
21
gem 'puma', "3.12.1" if version > '5-0-stable'
22
+ gem 'activerecord-jdbcsqlite3-adapter', git: 'https://github.com/jruby/activerecord-jdbc-adapter', platforms: [:jruby]
21
23
22
24
gem_list.each do |rails_gem|
23
25
gem rails_gem, :git => "https://github.com/rails/rails.git", :branch => version
24
26
end
25
27
when nil, false, ""
26
28
gem "rails", "~> 5.0.0"
29
+ gem 'activerecord-jdbcsqlite3-adapter'
27
30
else
28
31
gem "rails", version
29
32
30
33
if version >= '5-1-stable' && RUBY_VERSION >= "2.3"
31
34
gem "puma"
32
35
end
36
+ gem 'activerecord-jdbcsqlite3-adapter'
33
37
end
34
38
35
- gem 'activerecord-jdbcsqlite3-adapter', git: 'https://github.com/jruby/activerecord-jdbc-adapter', platforms: [:jruby]
36
-
You can’t perform that action at this time.
0 commit comments