mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
don't run stylus on rbx 1.9 mode
This commit is contained in:
parent
2db8028a1f
commit
2bfb296fde
1 changed files with 5 additions and 2 deletions
7
Gemfile
7
Gemfile
|
@ -43,8 +43,11 @@ gem 'markaby'
|
||||||
gem 'radius'
|
gem 'radius'
|
||||||
gem 'rabl' unless RUBY_ENGINE =~ /jruby|maglev/
|
gem 'rabl' unless RUBY_ENGINE =~ /jruby|maglev/
|
||||||
gem 'wlang', '>= 2.0.1' unless RUBY_ENGINE =~ /jruby|rbx/
|
gem 'wlang', '>= 2.0.1' unless RUBY_ENGINE =~ /jruby|rbx/
|
||||||
gem 'liquid' unless RUBY_ENGINE == 'rbx' and RUBY_VERSION > '1.9'
|
|
||||||
gem 'stylus'
|
if RUBY_ENGINE != 'rbx' or RUBY_VERSION < '1.9'
|
||||||
|
gem 'liquid'
|
||||||
|
gem 'stylus'
|
||||||
|
end
|
||||||
|
|
||||||
if RUBY_ENGINE == 'jruby'
|
if RUBY_ENGINE == 'jruby'
|
||||||
gem 'nokogiri', '!= 1.5.0'
|
gem 'nokogiri', '!= 1.5.0'
|
||||||
|
|
Loading…
Reference in a new issue