Method: FFaker::HTMLIpsum#ul_long
- Defined in:
- lib/ffaker/html_ipsum.rb
#ul_long(items = 3) ⇒ Object
42 43 44 45 46 47 48 |
# File 'lib/ffaker/html_ipsum.rb', line 42 def ul_long(items = 3) content_tag_for :ul do |ul| items.times do ul << content_tag_for(:li, paragraph(2)) end end end |