Skip to content
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.

Commit

Permalink
Merge branch '0tofu-master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Heaton committed Mar 16, 2015
2 parents d1f02d9 + 2456fe7 commit 36c5d99
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/instagram/request.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@ module Instagram
# Defines HTTP request methods
module Request
# Perform an HTTP GET request
def get(path, options={}, signature=false, raw=false, unformatted=false, no_response_wrapper=no_response_wrapper)
def get(path, options={}, signature=false, raw=false, unformatted=false, no_response_wrapper=no_response_wrapper())
request(:get, path, options, signature, raw, unformatted, no_response_wrapper)
end

# Perform an HTTP POST request
def post(path, options={}, signature=false, raw=false, unformatted=false, no_response_wrapper=no_response_wrapper)
def post(path, options={}, signature=false, raw=false, unformatted=false, no_response_wrapper=no_response_wrapper())
request(:post, path, options, signature, raw, unformatted, no_response_wrapper)
end

# Perform an HTTP PUT request
def put(path, options={}, signature=false, raw=false, unformatted=false, no_response_wrapper=no_response_wrapper)
def put(path, options={}, signature=false, raw=false, unformatted=false, no_response_wrapper=no_response_wrapper())
request(:put, path, options, signature, raw, unformatted, no_response_wrapper)
end

# Perform an HTTP DELETE request
def delete(path, options={}, signature=false, raw=false, unformatted=false, no_response_wrapper=no_response_wrapper)
def delete(path, options={}, signature=false, raw=false, unformatted=false, no_response_wrapper=no_response_wrapper())
request(:delete, path, options, signature, raw, unformatted, no_response_wrapper)
end

Expand Down

0 comments on commit 36c5d99

Please sign in to comment.