Method: FFaker::HTMLIpsum#ol_short
- Defined in:
- lib/ffaker/html_ipsum.rb
#ol_short(items = 3) ⇒ Object
50 51 52 53 54 55 56 |
# File 'lib/ffaker/html_ipsum.rb', line 50 def ol_short(items = 3) content_tag_for :ol do |ol| items.times do ol << content_tag_for(:li, sentence(2)) end end end |