For a bit of quick-and-dirty hacking, I would like to get some text into a page. This doesn't seem to work...
home.html.erb
...
<h1>Heading</h1>
<div><% Faker::Lorem.paragraph(sentence_count = 3) %></div>
...
I have faker in my Gemfile.
This just produces an empty div. Is there a way of using Faker in this way or do I need to put it into a model?
TIA
Steve