Method: Spider::Model::QuerySet#to_s

Defined in:
lib/spiderfw/model/query_set.rb

#to_sString

Returns All the objects, to_s, joined by ‘, ’.

Returns:

  • (String)

    All the objects, to_s, joined by ‘, ’



863
864
865
# File 'lib/spiderfw/model/query_set.rb', line 863

def to_s
    self.map{ |o| o.to_s }.join(', ')
end