2008-10-25 16:42:38 +00:00
|
|
|
require "rubygems"
|
|
|
|
|
2008-10-25 16:59:21 +00:00
|
|
|
$LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__))) unless $LOAD_PATH.include?(File.expand_path(File.dirname(__FILE__)))
|
|
|
|
|
2008-04-04 16:12:46 +00:00
|
|
|
module Webrat
|
2008-11-25 06:34:34 +00:00
|
|
|
# The common base class for all exceptions raised by Webrat.
|
2008-11-15 00:50:45 +00:00
|
|
|
class WebratError < StandardError
|
|
|
|
end
|
|
|
|
|
2008-11-25 01:29:58 +00:00
|
|
|
VERSION = '0.3.2.1'
|
2008-11-15 00:50:45 +00:00
|
|
|
|
2008-11-19 20:52:56 +00:00
|
|
|
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"
|
2008-11-30 06:38:55 +00:00
|
|
|
require "webrat/core/xml/nokogiri"
|
2008-11-19 20:52:56 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.on_java?
|
|
|
|
RUBY_PLATFORM =~ /java/
|
|
|
|
end
|
|
|
|
|
2008-04-05 16:49:18 +00:00
|
|
|
end
|
|
|
|
|
2008-11-19 20:52:56 +00:00
|
|
|
Webrat.require_xml
|
2008-11-07 07:49:48 +00:00
|
|
|
|
2008-10-25 16:59:21 +00:00
|
|
|
require "webrat/core"
|