Module: Slack::Request
- Included in:
- API
- Defined in:
- lib/slack/request.rb
Overview
Defines HTTP request methods
Instance Method Summary collapse
-
#delete(path, options = {}) ⇒ Object
Perform an HTTP DELETE request.
-
#get(path, options = {}) ⇒ Object
Perform an HTTP GET request.
-
#post(path, options = {}) ⇒ Object
Perform an HTTP POST request.
-
#put(path, options = {}) ⇒ Object
Perform an HTTP PUT request.
Instance Method Details
#delete(path, options = {}) ⇒ Object
Perform an HTTP DELETE request
20 21 22 |
# File 'lib/slack/request.rb', line 20 def delete(path, ={}) request(:delete, path, ) end |
#get(path, options = {}) ⇒ Object
Perform an HTTP GET request
5 6 7 |
# File 'lib/slack/request.rb', line 5 def get(path, ={}) request(:get, path, ) end |
#post(path, options = {}) ⇒ Object
Perform an HTTP POST request
10 11 12 |
# File 'lib/slack/request.rb', line 10 def post(path, ={}) request(:post, path, ) end |
#put(path, options = {}) ⇒ Object
Perform an HTTP PUT request
15 16 17 |
# File 'lib/slack/request.rb', line 15 def put(path, ={}) request(:put, path, ) end |