Module: HTTParty
- Extended by:
- AllowedFormatsDeprecation
- Included in:
- Basement
- Defined in:
- lib/httparty.rb,
lib/httparty/parser.rb,
lib/httparty/request.rb,
lib/httparty/version.rb,
lib/httparty/response.rb,
lib/httparty/exceptions.rb,
lib/httparty/logger/logger.rb,
lib/httparty/core_extensions.rb,
lib/httparty/hash_conversions.rb,
lib/httparty/response/headers.rb,
lib/httparty/connection_adapter.rb,
lib/httparty/logger/curl_logger.rb,
lib/httparty/logger/apache_logger.rb,
lib/httparty/module_inheritable_attributes.rb
Overview
Defined Under Namespace
Modules: AllowedFormatsDeprecation, ClassMethods, HashConversions, Logger, ModuleInheritableAttributes
Classes: Basement, BasicObject, ConnectionAdapter, CookieHash, Error, Parser, RedirectionTooDeep, Request, Response, ResponseError, UnsupportedFormat, UnsupportedURIScheme
Constant Summary
collapse
- VERSION =
"0.13.1"
Class Method Summary
collapse
const_missing
Class Method Details
.copy(*args, &block) ⇒ Object
582
583
584
|
# File 'lib/httparty.rb', line 582
def self.copy(*args, &block)
Basement.copy(*args, &block)
end
|
.delete(*args, &block) ⇒ Object
574
575
576
|
# File 'lib/httparty.rb', line 574
def self.delete(*args, &block)
Basement.delete(*args, &block)
end
|
.get(*args, &block) ⇒ Object
558
559
560
|
# File 'lib/httparty.rb', line 558
def self.get(*args, &block)
Basement.get(*args, &block)
end
|
.head(*args, &block) ⇒ Object
586
587
588
|
# File 'lib/httparty.rb', line 586
def self.head(*args, &block)
Basement.head(*args, &block)
end
|
.included(base) ⇒ Object
32
33
34
35
36
37
38
39
|
# File 'lib/httparty.rb', line 32
def self.included(base)
base.extend ClassMethods
base.send :include, HTTParty::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) ⇒ Object
578
579
580
|
# File 'lib/httparty.rb', line 578
def self.move(*args, &block)
Basement.move(*args, &block)
end
|
.normalize_base_uri(url) ⇒ Object
543
544
545
546
547
548
549
550
551
552
|
# File 'lib/httparty.rb', line 543
def self.normalize_base_uri(url)
normalized_url = url.dup
use_ssl = (normalized_url =~ /^https/) || (normalized_url =~ /:443\b/)
ends_with_slash = normalized_url =~ /\/$/
normalized_url.chop! if ends_with_slash
normalized_url.gsub!(/^https?:\/\//i, '')
"http#{'s' if use_ssl}://#{normalized_url}"
end
|
.options(*args, &block) ⇒ Object
590
591
592
|
# File 'lib/httparty.rb', line 590
def self.options(*args, &block)
Basement.options(*args, &block)
end
|
.patch(*args, &block) ⇒ Object
566
567
568
|
# File 'lib/httparty.rb', line 566
def self.patch(*args, &block)
Basement.patch(*args, &block)
end
|
.post(*args, &block) ⇒ Object
562
563
564
|
# File 'lib/httparty.rb', line 562
def self.post(*args, &block)
Basement.post(*args, &block)
end
|
.put(*args, &block) ⇒ Object
570
571
572
|
# File 'lib/httparty.rb', line 570
def self.put(*args, &block)
Basement.put(*args, &block)
end
|