Method: Compass::Installers::Base#install

Defined in:
lib/compass/installers/base.rb

#installObject

The default install method. Calls install_<type> methods in the order specified by the manifest.



69
70
71
72
73
# File 'lib/compass/installers/base.rb', line 69

def install
  manifest.each do |entry|
    send("install_#{entry.type}", entry.from, entry.to, entry.options)
  end
end