Skip to content

Commit

Permalink
dont run against nokogiri 1.5.0 on jruby
Browse files Browse the repository at this point in the history
  • Loading branch information
rkh committed Jul 21, 2011
1 parent 770cdcd commit 5dafb15
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Gemfile
Expand Up @@ -34,7 +34,11 @@ gem 'slim', :group => 'slim'
gem 'RedCloth', :group => 'redcloth' if RUBY_VERSION < "1.9.3" and RUBY_ENGINE != 'macruby'

if RUBY_VERSION > '1.8.6'
gem 'nokogiri', :group => 'nokogiri'
if RUBY_ENGINE == 'jruby'
gem 'nokogiri', '!= 1.5.0'
elsif RUBY_ENGINE != 'maglev'
gem 'nokogiri'
end
gem 'coffee-script', '>= 2.0', :group => 'coffee-script'
gem 'rdoc', :group => 'rdoc'
end
Expand Down

0 comments on commit 5dafb15

Please sign in to comment.