Method: FFaker::HTMLIpsum#ul_short
- Defined in:
- lib/ffaker/html_ipsum.rb
#ul_short(items = 3) ⇒ Object
34 35 36 37 38 39 40 |
# File 'lib/ffaker/html_ipsum.rb', line 34 def ul_short(items = 3) content_tag_for :ul do |ul| items.times do ul << content_tag_for(:li, sentence(2)) end end end |