Sha256: 0710b3bc16de24922cdde8b78d7a84735b6c5485970808f7b6268f2381f82d20
Contents?: true
Size: 626 Bytes
Versions: 2
Compression:
Stored size: 626 Bytes
Contents
SCSS_INIT = (<<-SCSS).gsub(/^/, ' ') # Enables support for SCSS template reloading in rack applications. # See http://nex-3.com/posts/88-sass-supports-rack for more details. # Store SCSS files (by default) within 'app/stylesheets' require 'sass/plugin/rack' Sass::Plugin.options[:syntax] = :scss Sass::Plugin.options[:template_location] = Padrino.root("app/stylesheets") Sass::Plugin.options[:css_location] = Padrino.root("public/stylesheets") app.use Sass::Plugin::Rack SCSS def setup_stylesheet require_dependencies 'haml' initializer :scss, SCSS_INIT.chomp empty_directory destination_root('/app/stylesheets') end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
padrino-gen-0.9.26 | lib/padrino-gen/generators/components/stylesheets/scss.rb |
padrino-gen-0.9.25 | lib/padrino-gen/generators/components/stylesheets/scss.rb |