Sha256: d59553725ad92b55f17b8ffae5b0ab311ec109746bfcbfcc63fc367af253fb6a
Contents?: true
Size: 656 Bytes
Versions: 1
Compression:
Stored size: 656 Bytes
Contents
# frozen_string_literal: true module FFakerTW module LoremIE extend ModuleUtils extend self def word fetch_sample(WORDS) end def words(num = 3) fetch_sample(WORDS, count: num) end def sentence fetch_sample(SENTENCES) end alias phrase sentence def sentences(sentence_count = 3) (1..sentence_count).map { fetch_sample(SENTENCES) } end alias phrases sentences def paragraph fetch_sample(PARAGRAPHS) end def paragraphs(paragraph_count = 3) (1..paragraph_count).map { paragraph } end def question fetch_sample(QUESTIONS) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ffakerTW-0.1.0 | lib/ffakerTW/lorem_ie.rb |