Module: Fiddler::ConnectionManager

Defined in:
lib/fiddler/connection_manager.rb

Defined Under Namespace

Classes: Connection

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.client_connectionObject

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,options={})
   check_config
   debug connection.get(url,options)
end

.post(url, options = {}) ⇒ Object



77
78
79
80
# File 'lib/fiddler/connection_manager.rb', line 77

def post(url,options={})
   check_config
   debug connection.post(url,options)
end

.post_content(url, options = {}) ⇒ Object



82
83
84
85
# File 'lib/fiddler/connection_manager.rb', line 82

def post_content(url,options={})
   check_config
   debug connection.post_content(url,options)
end