Class: GoogleSpreadsheet::Spreadsheet
- Inherits:
-
Object
- Object
- GoogleSpreadsheet::Spreadsheet
- Defined in:
- lib/to_google_spreadsheet.rb
Instance Method Summary collapse
Instance Method Details
#find_or_create_worksheet_by_name(name) ⇒ Object
24 25 26 27 28 |
# File 'lib/to_google_spreadsheet.rb', line 24 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 |