Module: CoinMarketCap::Cloud::Request
- Included in:
- Api::Client
- Defined in:
- lib/coinmarketcap/cloud/request.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
16 17 18 |
# File 'lib/coinmarketcap/cloud/request.rb', line 16 def delete(path, = {}) request(:delete, path, ) end |
#get(path, options = {}) ⇒ Object
4 5 6 |
# File 'lib/coinmarketcap/cloud/request.rb', line 4 def get(path, = {}) request(:get, path, ) end |
#post(path, options = {}) ⇒ Object
8 9 10 |
# File 'lib/coinmarketcap/cloud/request.rb', line 8 def post(path, = {}) request(:post, path, ) end |
#put(path, options = {}) ⇒ Object
12 13 14 |
# File 'lib/coinmarketcap/cloud/request.rb', line 12 def put(path, = {}) request(:put, path, ) end |