Class: GoogleSpreadsheet::Table
- Inherits:
-
Object
- Object
- GoogleSpreadsheet::Table
- Includes:
- Util
- Defined in:
- lib/google_spreadsheet.rb
Overview
Use GoogleSpreadsheet::Worksheet#add_table to create table. Use GoogleSpreadsheet::Worksheet#tables to get GoogleSpreadsheet::Table objects.
Instance Attribute Summary collapse
-
#worksheet_title ⇒ Object
readonly
Title of the worksheet the table belongs to.
Instance Method Summary collapse
-
#add_record(values) ⇒ Object
Adds a record.
-
#initialize(session, entry) ⇒ Table
constructor
:nodoc:.
-
#records ⇒ Object
Returns records in the table.
Methods included from Util
Constructor Details
#initialize(session, entry) ⇒ Table
:nodoc:
447 448 449 450 451 452 |
# File 'lib/google_spreadsheet.rb', line 447 def initialize(session, entry) #:nodoc: @columns = {} @worksheet_title = as_utf8(entry.search("gs:worksheet")[0]["name"]) @records_url = as_utf8(entry.search("content")[0]["src"]) @session = session end |
Instance Attribute Details
#worksheet_title ⇒ Object (readonly)
Title of the worksheet the table belongs to.
455 456 457 |
# File 'lib/google_spreadsheet.rb', line 455 def worksheet_title @worksheet_title end |
Instance Method Details
#add_record(values) ⇒ Object
Adds a record.
458 459 460 461 462 463 464 465 466 467 468 469 470 471 |
# File 'lib/google_spreadsheet.rb', line 458 def add_record(values) fields = "" values.each do |name, value| fields += "<gs:field name='#{h(name)}'>#{h(value)}</gs:field>" end xml =<<-EOS <entry xmlns="http://www.w3.org/2005/Atom" xmlns:gs="http://schemas.google.com/spreadsheets/2006"> #{fields} </entry> EOS @session.request(:post, @records_url, :data => xml) end |