class Kmc::Configuration::Configurator
Attributes
output_method[RW]
packages_url[RW]
post_processors[RW]
verbose[RW]
Public Class Methods
new()
click to toggle source
# File lib/kmc/configuration.rb, line 6 def initialize @verbose = false @post_processors = [Kmc::PostProcessors::ModuleManagerResolver] @output_method = Proc.new { |str| puts str } @packages_url = "https://github.com/kmc/packages/archive/master.zip" end