Tushar Maru
Tushar Maru

Reputation: 3435

Ruby error: no such file to load -- haml (MissingSourceFile)

I am getting this error when I run my 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)

Upvotes: 0

Views: 1335

Answers (2)

srboisvert
srboisvert

Reputation: 12749

You may need to add:

config.gem haml 

to your environment.rb file

Upvotes: 1

JRL
JRL

Reputation: 78003

Did you install the haml rubygem?

gem install haml

Upvotes: 2

Related Questions