module HTTParty
Constants
- VERSION
Public Class Methods
Source
# File lib/httparty.rb, line 668 def self.copy(*args, &block) Basement.copy(*args, &block) end
Source
# File lib/httparty.rb, line 660 def self.delete(*args, &block) Basement.delete(*args, &block) end
Source
# File lib/httparty.rb, line 644 def self.get(*args, &block) Basement.get(*args, &block) end
Source
# File lib/httparty.rb, line 672 def self.head(*args, &block) Basement.head(*args, &block) end
Source
# File lib/httparty.rb, line 26 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
Source
# File lib/httparty.rb, line 664 def self.move(*args, &block) Basement.move(*args, &block) end
Source
# File lib/httparty.rb, line 676 def self.options(*args, &block) Basement.options(*args, &block) end
Source
# File lib/httparty.rb, line 652 def self.patch(*args, &block) Basement.patch(*args, &block) end
Source
# File lib/httparty.rb, line 648 def self.post(*args, &block) Basement.post(*args, &block) end
Source
# File lib/httparty.rb, line 656 def self.put(*args, &block) Basement.put(*args, &block) end