module OkLinker

Constants

VERSION

Attributes

config[RW]

Public Class Methods

configure() { |config| ... } click to toggle source
# File lib/ok_linker.rb, line 20
def configure
  @config = OkLinker::Config.new
  yield @config
  @config
end
new(options = {}) click to toggle source
# File lib/ok_linker.rb, line 16
def new(options = {})
  OkLinker::Client.new(options)
end
options() click to toggle source
# File lib/ok_linker.rb, line 26
def options
  (@config && @config.options) || {}
end