module RubyFly

Constants

VERSION

Attributes

configuration[W]

Public Class Methods

configuration() click to toggle source
# File lib/ruby_fly.rb, line 9
def configuration
  @configuration ||= Configuration.new
end
configure() { |configuration| ... } click to toggle source
# File lib/ruby_fly.rb, line 13
def configure
  yield(configuration)
end
included(other) click to toggle source
# File lib/ruby_fly.rb, line 53
def self.included(other)
  other.extend(ClassMethods)
end
reset!() click to toggle source
# File lib/ruby_fly.rb, line 17
def reset!
  @configuration = nil
end