module Fyb

Fyb is an implementation of the FYB v1 API.

Constants

VERSION

Public Class Methods

client() click to toggle source
# File lib/fyb.rb, line 33
def client
  @client ||= Fyb::Client.new
  @client
end
method_missing(method, *args, &block) click to toggle source
# File lib/fyb.rb, line 38
def method_missing(method, *args, &block)
  client.send(method, *args, &block)
end
private() click to toggle source
# File lib/fyb.rb, line 28
def private
  @private ||= API::Private.new
  @private
end
public() click to toggle source
# File lib/fyb.rb, line 23
def public
  @public ||= API::Public.new
  @public
end