module Cynic

Constants

VERSION

Attributes

application[RW]
configuration[RW]

Public Class Methods

configure() { |configuration| ... } click to toggle source
# File lib/cynic.rb, line 9
def configure
  @configuration = Configuration.new
  yield(configuration) if block_given?
end