class Middleman::Extensions::Lorem::LoremObject

def sentences(total)

Returns:
  • (String) -

Parameters:
  • total (Fixnum) --
def sentences(total)
  (1..total).map do
    words(randm(4..15)).capitalize
  end.join('. ')
end