module Fauxhai

Constants

VERSION

Public Class Methods

fetch(*args, &block) click to toggle source
# File lib/fauxhai.rb, line 15
def self.fetch(*args, &block)
  Fauxhai::Fetcher.new(*args, &block)
end
mock(*args, &block) click to toggle source
# File lib/fauxhai.rb, line 11
def self.mock(*args, &block)
  Fauxhai::Mocker.new(*args, &block)
end
root() click to toggle source
# File lib/fauxhai.rb, line 7
def self.root
  @@root ||= File.expand_path("../../", __FILE__)
end