class Kosmos::Configuration

Attributes

output_method[RW]
post_processors[RW]
verbose[RW]

Public Class Methods

new() click to toggle source
# File lib/kosmos.rb, line 67
def initialize
  @verbose = false
  @post_processors = [Kosmos::PostProcessors::ModuleManagerResolver]
  @output_method = Proc.new { |str| puts str }
end