I use og:description meta tag like this
<meta property="og:description" content="<%= @post.description.html_safe %>" />
But it shows description of post in top of the page.
I have ever got this error in my php code to show og file. I thought, It will work to in rails. You just change ""
into ''
<meta property="og:description" content='<%= @post.description.html_safe %>'/>
or
<meta property="og:description" content='<%= @post.description %>'/>
I hope this help you.