It's probably some other gem screwing with the Rails 3 load order. What other gems are you loading? Can you do a binary search to see if removing one will make the problem go away?
On Tue, Sep 14, 2010 at 9:38 PM, Adam Stegman <[email protected]>wrote: > Wow, sorry, I moved on to something else and totally forgot about this > thread. It does work with a new project with just gem 'haml'. I'll > double-check to see what I may be missing here. > > Thanks, > Adam Stegman > > On Aug 29, 4:59 pm, Nathan Weizenbaum <[email protected]> wrote: > > Does it work if you use Ruby 1.9.1? Does it work on a newly-created Rails > > project? > > > > On Sun, Aug 29, 2010 at 1:20 PM, Adam Stegman <[email protected] > >wrote: > > > > > > > > > > > > > > > > > I should also add that I'm using Ruby 1.9.2-p0 > > > > > On Aug 29, 3:09 pm, Adam Stegman <[email protected]> wrote: > > > > 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]<haml%[email protected]>< > haml%[email protected]<haml%[email protected]> > >. > > > For more options, visit this group at > > >http://groups.google.com/group/haml?hl=en. > > -- > 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] <haml%[email protected]>. > For more options, visit this group at > http://groups.google.com/group/haml?hl=en. > > -- 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.
