davidesantangelo/webinspector

View on GitHub
lib/web_inspector.rb

Summary

Maintainability
A
0 mins
Test Coverage
require File.expand_path(File.join(File.dirname(__FILE__), 'web_inspector/page'))
require File.expand_path(File.join(File.dirname(__FILE__), 'web_inspector/version'))

module WebInspector
  extend self

  def new(url, options = {})
    Page.new(url, options)
  end
end