1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00

Merge pull request #1577 from olleolleolle/patch-4

CI: Use jruby-9.2.9.0
This commit is contained in:
namusyaka 2019-12-30 20:33:56 +09:00 committed by GitHub
commit 64cf079361
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 3 deletions

View file

@ -26,7 +26,7 @@ rvm:
- 2.6.5
- ruby-head
- rbx-3
- jruby-9.2.8.0
- jruby-9.2.9.0
- jruby-head
script: ./.travis.sh
@ -35,7 +35,7 @@ matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-9.2.8.0
- rvm: jruby-9.2.9.0
- rvm: rbx-3
notifications:

View file

@ -26,6 +26,10 @@ if RUBY_ENGINE == 'jruby'
gem 'trinidad'
end
if RUBY_ENGINE == 'jruby' || RUBY_ENGINE == 'ruby'
gem "activesupport", "~> 5.1.6"
end
if RUBY_ENGINE == "ruby"
gem 'less', '~> 2.0'
gem 'therubyracer'
@ -34,7 +38,6 @@ if RUBY_ENGINE == "ruby"
gem 'bluecloth'
gem 'rdiscount'
gem 'RedCloth'
gem "activesupport", "~> 5.1.6"
gem 'puma'
gem 'yajl-ruby'
gem 'nokogiri'