module Cryptid

Constants

VERSION

Attributes

client[W]
configuration[W]

Public Class Methods

client() click to toggle source
# File lib/cryptid.rb, line 22
def client
  @client ||= Client.new
end
configuration() click to toggle source
# File lib/cryptid.rb, line 10
def configuration
  @configuration ||= Configuration.new
end
configure() { |configuration| ... } click to toggle source
# File lib/cryptid.rb, line 18
def configure
  yield(configuration)
end
reset() click to toggle source
# File lib/cryptid.rb, line 14
def reset
  @configuration = Configuration.new
end
send(event) click to toggle source
# File lib/cryptid.rb, line 26
def send(event)
  client.send(event)
end