Method: Compass::Installers::Base#configure

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

#configureObject

The default configure method – it sets up directories from the options and corresponding default_* methods for those not found in the options hash. It can be overridden it or augmented for reading config files, prompting the user for more information, etc.



44
45
46
47
48
49
50
51
52
# File 'lib/compass/installers/base.rb', line 44

def configure
  unless @configured
    [:css_dir, :sass_dir, :images_dir, :javascripts_dir].each do |opt|
      configure_option_with_default opt
    end
  end
ensure
  @configured = true
end