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, options = {})
  @template_path = template_path
  @target_path = target_path
  @working_path = Dir.getwd
  @options = options
  @manifest = Manifest.new(manifest_file)
  self.logger = options[:logger]
  configure
end