class SkeletorApi::Config

Attributes

api_key[RW]
api_version[RW]

Public Class Methods

new(api_key: '', api_version: LATEST_API_VERSION) click to toggle source
# File lib/skeletor_api/config.rb, line 5
def initialize(api_key: '', api_version: LATEST_API_VERSION)
  @api_key = api_key
  @api_version = api_version
end