module FFaker::LoremPL

def character

def character
  fetch_sample(CHARACTERS)
end

def characters(count = 10)

def characters(count = 10)
  fetch_sample(CHARACTERS, count: count).join
end

def end_of_sentence

def end_of_sentence
  case rand(10)
  when 0..7 then '.'
  when 8 then '?'
  when 9 then '!'
  end
end

def paragraph(count = 3)

def paragraph(count = 3)
  sentences(count + rand(0..2)).join(' ')
end

def paragraphs(count = 3)

def paragraphs(count = 3)
  (1..count).map { paragraph }
end

def sentence(count = 7)

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

def sentences(count = 3)

def sentences(count = 3)
  (1..count).map { sentence }
end

def word

def word
  fetch_sample(WORDS)
end

def words(count = 3)

def words(count = 3)
  fetch_sample(WORDS, count: count)
end