We store our blog posts in a text column in our database. We need a "preview" of the blog post for our blog's home page. That way, we can display the last couple days' blog posts with links to read the whole thing.
Is there a way in rails to pull out a certain amount of a text column? Maybe the first x bytes? I understand this won't be the same length for every blog post, but it should get it in the general area.
Or maybe do some html/css hack where we overflow a div and add an elipse to the div?
I could also see creating a separate "preview" column, but that feels very hacky.
Rails 3.2.1. Database is MySQL