1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
# frozen_string_literal: true
module FFaker
# Inspirations:
# https://pl.wiktionary.org
module LoremPL
extend ModuleUtils
extend self
def character
fetch_sample(CHARACTERS)
end
def characters(count = 10)
fetch_sample(CHARACTERS, count: count).join
end
def word
fetch_sample(WORDS)
end
def words(count = 3)
fetch_sample(WORDS, count: count)
end
def sentence(count = 7)
sentence = words(count + rand(0..5))
sentence[rand(3..(sentence.length - 3))] += ',' if sentence.length > 10
sentence = sentence.join(' ')
sentence = sentence.capitalize
"#{sentence}#{end_of_sentence}"
end
alias phrase sentence
def sentences(count = 3)
(1..count).map { sentence }
end
alias phrases sentences
def paragraph(count = 3)
sentences(count + rand(0..2)).join(' ')
end
def paragraphs(count = 3)
(1..count).map { paragraph }
end
private
def end_of_sentence
case rand(10)
when 0..7 then '.'
when 8 then '?'
when 9 then '!'
end
end
end
end
|