Method: RD::RBLFile#string_to_labels
- Defined in:
- lib/rd/rbl-file.rb
#string_to_labels(src) ⇒ Object
47 48 49 50 51 52 53 |
# File 'lib/rd/rbl-file.rb', line 47 def string_to_labels(src) labels = [] src.each_line do |i| labels << parse_line(i) end labels end |