webrat/lib/webrat.rb

19 lines
465 B
Ruby
Raw Normal View History

2009-08-20 02:43:23 +00:00
require "rack"
require "nokogiri"
2008-04-04 16:12:46 +00:00
module Webrat
VERSION = "0.7.2.pre"
autoload :MechanizeAdapter, "webrat/adapters/mechanize"
autoload :MerbAdapter, "webrat/adapters/merb"
autoload :RackAdapter, "webrat/adapters/rack"
autoload :RailsAdapter, "webrat/adapters/rails"
autoload :SinatraAdapter, "webrat/adapters/sinatra"
2008-11-25 06:34:34 +00:00
# The common base class for all exceptions raised by Webrat.
class WebratError < StandardError
end
2008-04-05 16:49:18 +00:00
end
2008-10-25 16:59:21 +00:00
require "webrat/core"