Moving requiring of Nokogiri/Hpricot/REXML to a method

This commit is contained in:
Bryan Helmkamp 2008-11-19 15:52:56 -05:00
parent ec8bc82c24
commit f1b4486594
1 changed files with 18 additions and 12 deletions

View File

@ -12,22 +12,28 @@ module Webrat
defined?(RAILS_ROOT) ? RAILS_ROOT : Merb.root
end
def self.require_xml
if on_java?
# We need Nokogiri's CSS to XPath support, even if using REXML and Hpricot for parsing and searching
require "nokogiri/css"
require "hpricot"
require "rexml/document"
else
require "nokogiri"
require "webrat/core/nokogiri"
end
end
def self.on_java?
RUBY_PLATFORM =~ /java/
end
end
if RUBY_PLATFORM =~ /java/
# We need Nokogiri's CSS to XPath support, even if using REXML and Hpricot for parsing and searching
require "nokogiri/css"
require "hpricot"
require "rexml/document"
else
require "nokogiri"
require "webrat/core/nokogiri"
end
Webrat.require_xml
require "webrat/core"
# TODO: This is probably not a good idea.
# Probably better for webrat users to require "webrat/rails" etc. directly
if defined?(RAILS_ENV)
require "webrat/rails"
end
require "webrat/rails" if defined?(RAILS_ENV)