module HTTParty

@see HTTParty::ClassMethods

Constants

VERSION

Public Class Methods

copy(*args, &block) click to toggle source
# File lib/httparty.rb, line 666
def self.copy(*args, &block)
  Basement.copy(*args, &block)
end
delete(*args, &block) click to toggle source
# File lib/httparty.rb, line 658
def self.delete(*args, &block)
  Basement.delete(*args, &block)
end
get(*args, &block) click to toggle source
# File lib/httparty.rb, line 642
def self.get(*args, &block)
  Basement.get(*args, &block)
end
head(*args, &block) click to toggle source
# File lib/httparty.rb, line 670
def self.head(*args, &block)
  Basement.head(*args, &block)
end
included(base) click to toggle source
# File lib/httparty.rb, line 23
def self.included(base)
  base.extend ClassMethods
  base.send :include, ModuleInheritableAttributes
  base.send(:mattr_inheritable, :default_options)
  base.send(:mattr_inheritable, :default_cookies)
  base.instance_variable_set("@default_options", {})
  base.instance_variable_set("@default_cookies", CookieHash.new)
end
move(*args, &block) click to toggle source
# File lib/httparty.rb, line 662
def self.move(*args, &block)
  Basement.move(*args, &block)
end
options(*args, &block) click to toggle source
# File lib/httparty.rb, line 674
def self.options(*args, &block)
  Basement.options(*args, &block)
end
patch(*args, &block) click to toggle source
# File lib/httparty.rb, line 650
def self.patch(*args, &block)
  Basement.patch(*args, &block)
end
post(*args, &block) click to toggle source
# File lib/httparty.rb, line 646
def self.post(*args, &block)
  Basement.post(*args, &block)
end
put(*args, &block) click to toggle source
# File lib/httparty.rb, line 654
def self.put(*args, &block)
  Basement.put(*args, &block)
end