webrat/lib/webrat.rb

36 lines
815 B
Ruby
Raw Normal View History

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
class WebratError < StandardError
end
2008-11-09 02:38:56 +00:00
VERSION = '0.3.2'
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
2008-04-05 16:49:18 +00:00
end
Webrat.require_xml
2008-10-25 16:59:21 +00:00
require "webrat/core"
2008-10-25 16:42:38 +00:00
2008-11-05 23:01:05 +00:00
# TODO: This is probably not a good idea.
# Probably better for webrat users to require "webrat/rails" etc. directly
require "webrat/rails" if defined?(RAILS_ENV)