Skip to content

Instantly share code, notes, and snippets.

@hecbuma
Created February 11, 2014 23:43
Show Gist options
  • Save hecbuma/8946775 to your computer and use it in GitHub Desktop.
Save hecbuma/8946775 to your computer and use it in GitHub Desktop.
# Executes a request simulating GET HTTP method and set/volley the response
def get(action, parameters = nil, session = nil, flash = nil)
process(action, parameters, session, flash, "GET")
end
# Executes a request simulating POST HTTP method and set/volley the response
def post(action, parameters = nil, session = nil, flash = nil)
process(action, parameters, session, flash, "POST")
end
# Executes a request simulating PUT HTTP method and set/volley the response
def put(action, parameters = nil, session = nil, flash = nil)
process(action, parameters, session, flash, "PUT")
end
# Executes a request simulating DELETE HTTP method and set/volley the response
def delete(action, parameters = nil, session = nil, flash = nil)
process(action, parameters, session, flash, "DELETE")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment