views:

65

answers:

2

I am getting this error when run ror project "C:/InstantRails/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require': no such file to load -- haml (MissingSourceFile)"

+1  A: 

Did you install the haml rubygem?

gem install haml
JRL
+1  A: 

You may need to add:

config.gem haml 

to your environment.rb file

srboisvert