Module: HTTParty
- Included in:
- Basement
- Defined in:
- lib/httparty.rb,
lib/httparty/utils.rb,
lib/httparty/parser.rb,
lib/httparty/request.rb,
lib/httparty/version.rb,
lib/httparty/response.rb,
lib/httparty/exceptions.rb,
lib/httparty/decompressor.rb,
lib/httparty/request/body.rb,
lib/httparty/text_encoder.rb,
lib/httparty/logger/logger.rb,
lib/httparty/hash_conversions.rb,
lib/httparty/response/headers.rb,
lib/httparty/headers_processor.rb,
lib/httparty/response_fragment.rb,
lib/httparty/connection_adapter.rb,
lib/httparty/logger/curl_formatter.rb,
lib/httparty/logger/apache_formatter.rb,
lib/httparty/logger/logstash_formatter.rb,
lib/httparty/request/multipart_boundary.rb,
lib/httparty/module_inheritable_attributes.rb
Overview
Defined Under Namespace
Modules: ClassMethods, HashConversions, Logger, ModuleInheritableAttributes, Utils
Classes: Basement, ConnectionAdapter, CookieHash, Decompressor, DuplicateLocationHeader, Error, Foul, HeadersProcessor, NetworkError, Parser, RedirectionTooDeep, Request, Response, ResponseError, ResponseFragment, TextEncoder, UnsupportedFormat, UnsupportedURIScheme
Constant Summary
collapse
- VERSION =
'0.23.1'
- COMMON_NETWORK_ERRORS =
[
EOFError,
Errno::ECONNABORTED,
Errno::ECONNREFUSED,
Errno::ECONNRESET,
Errno::EHOSTUNREACH,
Errno::EINVAL,
Errno::ENETUNREACH,
Errno::ENOTSOCK,
Errno::EPIPE,
Errno::ETIMEDOUT,
Net::HTTPBadResponse,
Net::HTTPHeaderSyntaxError,
Net::ProtocolError,
Net::ReadTimeout,
OpenSSL::SSL::SSLError,
SocketError,
Timeout::Error ].freeze
Class Method Summary
collapse
-
.build_request(*args, &block) ⇒ Object
-
.copy(*args, &block) ⇒ Object
-
.delete(*args, &block) ⇒ Object
-
.get(*args, &block) ⇒ Object
-
.head(*args, &block) ⇒ Object
-
.included(base) ⇒ Object
-
.move(*args, &block) ⇒ Object
-
.normalize_base_uri(url) ⇒ Object
-
.options(*args, &block) ⇒ Object
-
.patch(*args, &block) ⇒ Object
-
.post(*args, &block) ⇒ Object
-
.put(*args, &block) ⇒ Object
Class Method Details
.build_request(*args, &block) ⇒ Object
689
690
691
|
# File 'lib/httparty.rb', line 689
def self.build_request(*args, &block)
Basement.build_request(*args, &block)
end
|
.copy(*args, &block) ⇒ Object
677
678
679
|
# File 'lib/httparty.rb', line 677
def self.copy(*args, &block)
Basement.copy(*args, &block)
end
|
.delete(*args, &block) ⇒ Object
669
670
671
|
# File 'lib/httparty.rb', line 669
def self.delete(*args, &block)
Basement.delete(*args, &block)
end
|
.get(*args, &block) ⇒ Object
653
654
655
|
# File 'lib/httparty.rb', line 653
def self.get(*args, &block)
Basement.get(*args, &block)
end
|
.head(*args, &block) ⇒ Object
681
682
683
|
# File 'lib/httparty.rb', line 681
def self.head(*args, &block)
Basement.head(*args, &block)
end
|
.included(base) ⇒ Object
21
22
23
24
25
26
27
28
|
# File 'lib/httparty.rb', line 21
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) ⇒ Object
673
674
675
|
# File 'lib/httparty.rb', line 673
def self.move(*args, &block)
Basement.move(*args, &block)
end
|
.normalize_base_uri(url) ⇒ Object
638
639
640
641
642
643
644
645
646
647
|
# File 'lib/httparty.rb', line 638
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
685
686
687
|
# File 'lib/httparty.rb', line 685
def self.options(*args, &block)
Basement.options(*args, &block)
end
|
.patch(*args, &block) ⇒ Object
661
662
663
|
# File 'lib/httparty.rb', line 661
def self.patch(*args, &block)
Basement.patch(*args, &block)
end
|
.post(*args, &block) ⇒ Object
657
658
659
|
# File 'lib/httparty.rb', line 657
def self.post(*args, &block)
Basement.post(*args, &block)
end
|
.put(*args, &block) ⇒ Object
665
666
667
|
# File 'lib/httparty.rb', line 665
def self.put(*args, &block)
Basement.put(*args, &block)
end
|