class GlimrApiClient::Base

Attributes

args[R]

Public Class Methods

call(*args) click to toggle source
# File lib/glimr_api_client/base.rb, line 6
def self.call(*args)
  new(*args).call
end
new(*args) click to toggle source
# File lib/glimr_api_client/base.rb, line 10
def initialize(*args)
  @args = args
end

Public Instance Methods

call() click to toggle source
# File lib/glimr_api_client/base.rb, line 14
def call
  check_request!
  post
  self
end
check_request!() click to toggle source
# File lib/glimr_api_client/base.rb, line 20
def check_request!
end