mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
do not require nokogiri when RUBY_VERSION < 1.9.2 (nokogiri deprecated 1.8)
This commit is contained in:
parent
8e675eff70
commit
9a434fe90c
1 changed files with 1 additions and 1 deletions
2
Gemfile
2
Gemfile
|
@ -61,7 +61,7 @@ if RUBY_ENGINE == 'jruby'
|
|||
gem 'trinidad'
|
||||
else
|
||||
gem 'yajl-ruby'
|
||||
gem 'nokogiri'
|
||||
gem 'nokogiri' if RUBY_VERSION >= '1.9.2'
|
||||
gem 'thin'
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue