Class: GoogleSpreadsheet::Spreadsheet

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

Instance Method Summary collapse

Instance Method Details

#find_or_create_worksheet_by_name(name) ⇒ Object



14
15
16
17
18
# File 'lib/to_google_spreadsheet.rb', line 14

def find_or_create_worksheet_by_name(name)
  ws = worksheets.find {|ws| ws.title == name}
  ws ||= add_worksheet(name) # create it if it doesn't exists
  ws
end