module Undead

Constants

VERSION

Public Class Methods

agent() click to toggle source
# File lib/undead.rb, line 3
def agent
  @agent ||= Agent.new
end
get(url) click to toggle source
# File lib/undead.rb, line 7
def get(url)
  agent.get(url)
end
windows?() click to toggle source
# File lib/undead/utility.rb, line 3
def windows?
  RbConfig::CONFIG["host_os"] =~ /mingw|mswin|cygwin/
end