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