mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
dont run c exts on jruby on travis
This commit is contained in:
parent
67d923e3f3
commit
d24946a214
1 changed files with 1 additions and 1 deletions
2
Gemfile
2
Gemfile
|
@ -44,7 +44,7 @@ elsif RUBY_ENGINE != 'maglev'
|
|||
gem 'nokogiri'
|
||||
end
|
||||
|
||||
unless RUBY_ENGINE == 'jruby' && JRUBY_VERSION < "1.6.1"
|
||||
unless RUBY_ENGINE == 'jruby' && (ENV['TRAVIS'] || JRUBY_VERSION < "1.6.1")
|
||||
# C extensions
|
||||
gem 'rdiscount'
|
||||
gem 'redcarpet'
|
||||
|
|
Loading…
Reference in a new issue