module Ark

Constants

MAJOR

Current major release.

MINOR

Current minor release.

PATCH

Current patch level.

VERSION

Full release version.

Public Class Methods

client() click to toggle source
# File lib/ark.rb, line 7
def client
  return @client if defined?(@client) && @client.same_options?(options)
  @client = Ark::Client.new(options)
end