Simon Engledew's Blog

Eldritch nomenclature, conjoured for arcane contraptions to execute unerringly.

July 9, 2009 at 12:09pm
home

Haml 2.2 Compile Error In Ugly Production Mode

If you were previously using the Haml syntax:

%p= 'string ', method, ' string'

you will need to change it to:

%p= ['string ', method, ' string']

to avoid compilation errors in production mode.