module CLIntegracon

Layout structure

Constants

VERSION

Attributes

shared_config[RW]

@return [Configuration]

Get the shared configuration, set by {self.configure}.

Public Class Methods

configure(&block) click to toggle source

Set a new shared configuration

@param [Block<() -> ()>] block

the block which is evaluated on the new shared configuration
# File lib/CLIntegracon/configuration.rb, line 16
def configure(&block)
  self.shared_config ||= Configuration.new
  shared_config.instance_eval &block
end