module Kitely
Constants
- BASE_URL
- VERSION
Public Class Methods
public_key()
click to toggle source
# File lib/kitely.rb, line 21 def self.public_key @public_key end
public_key=(key)
click to toggle source
# File lib/kitely.rb, line 18 def self.public_key=(key) @public_key = key end
secret_key()
click to toggle source
# File lib/kitely.rb, line 14 def self.secret_key @secret_key end
secret_key=(key)
click to toggle source
# File lib/kitely.rb, line 11 def self.secret_key=(key) @secret_key = key end
url(path)
click to toggle source
# File lib/kitely.rb, line 25 def self.url(path) "#{BASE_URL}#{path}" end