Class: ActiveRecord::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/csvgem.rb

Class Method Summary collapse

Class Method Details

.to_xls(*attributes) ⇒ Object



6
7
8
9
10
# File 'lib/csvgem.rb', line 6

def self.to_xls(*attributes)
  book = Spreadsheet::Workbook.new
  Csvgem.insert_columns(book, self, attributes)
  book.write "./#{self.to_s.pluralize}.xls"
end