Sha256: 08577724e6f2c565237602ed3de2041d6437cfe71e060a346eeea87830945623
Contents?: true
Size: 873 Bytes
Versions: 6
Compression:
Stored size: 873 Bytes
Contents
# encoding: utf-8 module Faker # Based on Perl's Text::Lorem module Lorem extend ModuleUtils extend self def characters(character_count = 255) Array.new(character_count < 0 ? 0 : character_count).map { CHARACTERS.sample }.join end def word WORDS.sample end def words(num = 3) WORDS.random_pick(num) end def sentence(word_count = 4) s = words(word_count + rand(5) + 1) s[0].capitalize! s = s.join(' ') "#{s}." end alias_method :phrase, :sentence def sentences(sentence_count = 3) (1..sentence_count).map { sentence } end alias_method :phrases, :sentences def paragraph(sentence_count = 3) sentences(sentence_count + rand(3)).join(' ') end def paragraphs(paragraph_count = 3) (1..paragraph_count).map { paragraph } end end end
Version data entries
6 entries across 6 versions & 2 rubygems