module GrowthPush::Client
Public Class Methods
get(endpoint, params={})
click to toggle source
# File lib/growth_push/client.rb, line 4 def get(endpoint, params={}) connection = Connection.new(params) connection.get(endpoint) end
post(endpoint, params={})
click to toggle source
# File lib/growth_push/client.rb, line 9 def post(endpoint, params={}) connection = Connection.new(params) connection.post(endpoint) end
put(endpoint, params={})
click to toggle source
# File lib/growth_push/client.rb, line 14 def put(endpoint, params={}) connection = Connection.new(params) connection.put(endpoint) end