class Mike::Browser

Public Class Methods

new() click to toggle source
# File lib/mike.rb, line 55
def initialize
end

Public Instance Methods

open(url) { |doc| ... } click to toggle source
# File lib/mike.rb, line 58
def open(url)
  doc = Document.new(url)
  yield doc if block_given?
  doc
end