Class: CSV::Table
- Inherits:
-
Object
- Object
- CSV::Table
- Defined in:
- lib/scrapey/core.rb
Instance Method Summary collapse
Instance Method Details
#shuffle ⇒ Object
21 22 23 24 25 |
# File 'lib/scrapey/core.rb', line 21 def shuffle arr = self.to_a k = arr.shift arr.map{|v| Hash[k.zip v]}.shuffle end |