I'm starting a new Rails 3 app using Haml and am successfully rendering pages with it. Now, my issue is that Sass isn't compiling my SCSS files located in public/stylesheets/sass.
The Sass Reference says I just need to put `gem 'haml'` in my Gemfile, but when it didn't work I went ahead and added the config.ru steps as well > require 'sass/plugin/rack' > use Sass::Plugin::Rack So, with or without that it still doesn't work. Am I missing something important? I didn't see any other steps in the documentation. Gemfile: source 'http://rubygems.org' gem 'rails', '3.0.0.rc' gem 'sqlite3-ruby', :require => 'sqlite3' gem 'haml', '3.0.17' gem 'haml-rails' gem 'jquery-rails' group :test, :development do gem 'ruby-debug19' gem 'factory_girl' gem 'rspec-rails', '2.0.0.beta.20' end -- You received this message because you are subscribed to the Google Groups "Haml" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/haml?hl=en.
