I had html_helpers 1.1.3 installed as a gem in a rails 2 project. #decode_entities would error with "uninitialized constant HTML::EntityCoder::HTMLEntities"
It looks like htmlentities is being loaded in init.rb however init.rb is not used with gems.
I ran the unit tests which also failed. So I added "require htmlentities" to the top of html_helpers.rb
Hi,
I had html_helpers 1.1.3 installed as a gem in a rails 2 project. #decode_entities would error with "uninitialized constant HTML::EntityCoder::HTMLEntities"
It looks like htmlentities is being loaded in init.rb however init.rb is not used with gems.
I ran the unit tests which also failed. So I added "require htmlentities" to the top of html_helpers.rb
Thanks,
Jeff