I'm trying to render my HAML partial (_my_partial.haml) from my html.erb file:
<%= render "shared/my_partial" %>
And getting:
ActionView::Template::Error (Missing partial shared/my_partial with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :coffee]}. Searched in:
I've noticed that :handlers doesn't contain haml.
In Gemfile I have
group :assets do
gem 'haml-rails'
..
end
One thing to note: this only happens on production environment, e.g. when I'm using
RAILS_ENV production rails s
How can I add it there so it might try and find the partial later?
Move
gem 'haml-rails'
out ofgroup :assets
. It should do the trick.