So I decided to use the truncate_html gem so that I can remove tags from my posts when I want to preview them. It worked beautifully in development mode, I installed it just like the documentation says https://github.com/ianwhite/truncate_html but for some reason when I push to production with heroku my sidebar and my pagination disappear. The more important thing in this is my pagination
I reference pagination in my view like this
<%= will_paginate @posts %>
I used the gem in the view like this
<h9><%= truncate_html(post.body, :length => 300) %></h9>
Has anyone has this error before or have any idea what is going on?