Module: Remove_article
- Defined in:
- lib/remove_article.rb
Instance Method Summary collapse
Instance Method Details
#process ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'lib/remove_article.rb', line 5 def process list_item = super elements = [] list_item.each do |item| temp_value = '#' + item elements.push(temp_value) end return elements end |