module LearnWeb::Client::Connection
Public Instance Methods
get(url, options = {})
click to toggle source
# File lib/learn_web/client/connection.rb, line 4 def get(url, options = {}) request :get, url, options end
post(url, options = {})
click to toggle source
# File lib/learn_web/client/connection.rb, line 8 def post(url, options = {}) request :post, url, options end