1
0
Fork 0
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:
Konstantin Haase 2011-08-01 09:49:56 +02:00
parent 67d923e3f3
commit d24946a214

View file

@ -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'