Method: MultiFiles#to_s
- Defined in:
- lib/file_obj.rb
#to_s ⇒ Object
will return a space separated list of files, surrounded with quotes
78 79 80 |
# File 'lib/file_obj.rb', line 78 def to_s @paths.inject("") { |list, elem| list + " \"#{elem}\"" }.strip end |