Module: AppManager::Client::Connection
- Included in:
- AppManager::Client
- Defined in:
- lib/app_manager/client/connection.rb
Instance Method Summary collapse
- #delete(path, options = {}) ⇒ Object
- #get(path, options = {}) ⇒ Object
- #post(path, options = {}) ⇒ Object
- #put(path, options = {}) ⇒ Object
Instance Method Details
#delete(path, options = {}) ⇒ Object
19 20 21 |
# File 'lib/app_manager/client/connection.rb', line 19 def delete(path, = {}) request :delete, path, end |
#get(path, options = {}) ⇒ Object
7 8 9 |
# File 'lib/app_manager/client/connection.rb', line 7 def get(path, = {}) request :get, path, end |
#post(path, options = {}) ⇒ Object
11 12 13 |
# File 'lib/app_manager/client/connection.rb', line 11 def post(path, = {}) request :post, path, end |
#put(path, options = {}) ⇒ Object
15 16 17 |
# File 'lib/app_manager/client/connection.rb', line 15 def put(path, = {}) request :put, path, end |