Module: TemplateConfigurator

Defined in:
lib/template_configurator/version.rb,
lib/template_configurator.rb,
lib/template_configurator/service.rb,
lib/template_configurator/processor.rb,
lib/template_configurator/command_line.rb

Overview

Template Configurator - A utility to generate configuration files from ERB templates and restart services when configuration changes.

Copyright © 2012 Erik Osterman <[email protected]>

This file is part of Template Configurator.

Template Configurator is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

Template Configurator is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with Template Configurator. If not, see <www.gnu.org/licenses/>.

Defined Under Namespace

Classes: CommandLine, Processor, Service, ServiceException

Constant Summary collapse

VERSION =
"1.0.1"
@@logger =
nil

Class Method Summary collapse

Class Method Details

.logObject



34
35
36
# File 'lib/template_configurator.rb', line 34

def self.log
  @@logger
end

.log=(logger) ⇒ Object



30
31
32
# File 'lib/template_configurator.rb', line 30

def self.log=(logger)
  @@logger=logger
end