hollandaise/lib/hollandaise.rb

15 lines
215 B
Ruby
Raw Normal View History

2012-02-28 15:23:38 +00:00
require "hollandaise/version"
2012-08-15 15:30:23 +00:00
require 'hollandaise/browsers'
require 'hollandaise/browser'
2012-02-28 15:23:38 +00:00
module Hollandaise
2012-08-15 15:30:23 +00:00
class << self
attr_accessor :url, :browsers
end
def self.configure
yield self
end
2012-02-28 15:23:38 +00:00
end
2012-08-15 15:30:23 +00:00