Module: Fiddler::ConnectionManager
- Defined in:
- lib/fiddler/connection_manager.rb
Defined Under Namespace
Classes: Connection
Class Attribute Summary collapse
-
.client_connection ⇒ Object
Returns the value of attribute client_connection.
Class Method Summary collapse
- .get(url, options = {}) ⇒ Object
- .post(url, options = {}) ⇒ Object
- .post_content(url, options = {}) ⇒ Object
Class Attribute Details
.client_connection ⇒ Object
Returns the value of attribute client_connection.
70 71 72 |
# File 'lib/fiddler/connection_manager.rb', line 70 def client_connection @client_connection end |
Class Method Details
.get(url, options = {}) ⇒ Object
72 73 74 75 |
# File 'lib/fiddler/connection_manager.rb', line 72 def get(url,={}) check_config debug connection.get(url,) end |
.post(url, options = {}) ⇒ Object
77 78 79 80 |
# File 'lib/fiddler/connection_manager.rb', line 77 def post(url,={}) check_config debug connection.post(url,) end |
.post_content(url, options = {}) ⇒ Object
82 83 84 85 |
# File 'lib/fiddler/connection_manager.rb', line 82 def post_content(url,={}) check_config debug connection.post_content(url,) end |