Method: Compass::Installers::Base#initialize
- Defined in:
- lib/compass/installers/base.rb
#initialize(template_path, target_path, options = {}) ⇒ Base
Returns a new instance of Base.
13 14 15 16 17 18 19 20 21 |
# File 'lib/compass/installers/base.rb', line 13 def initialize(template_path, target_path, = {}) @template_path = template_path @target_path = target_path @working_path = Dir.getwd @options = @manifest = Manifest.new(manifest_file) self.logger = [:logger] configure end |