Method: Compass::Installers::Base#run
- Defined in:
- lib/compass/installers/base.rb
#run(options = {}) ⇒ Object
Runs the installer. Every installer must conform to the installation strategy of prepare, install, and then finalize. A default implementation is provided for each step.
34 35 36 37 38 |
# File 'lib/compass/installers/base.rb', line 34 def run( = {}) prepare install finalize unless [:skip_finalization] end |