roo 1.13.0 → 1.13.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c041c89a52bab18a4a8c0f3ca606323c2a74dcf4
4
- data.tar.gz: 73837bdf2ff5a36f18f70c0353f2535ca128c511
3
+ metadata.gz: dc5611ebf2e74bc1b5e0219a3c4ee552a1345b83
4
+ data.tar.gz: 4f462e45c9efc037c7f76b83a58d96254d261722
5
5
  SHA512:
6
- metadata.gz: 802f2af75523ef329aeaeca290702eba0d0a87f866e07db3ad75efcf1191f252e9f1a9856eb5580d93446e64b95f05143132fbace981e4b2e522af96df916547
7
- data.tar.gz: 9d28e8f7980756a1a9f8f9f7a5c3c47af33aaf53f3bf0fda6ebacf951d19cccb0e79467619f458436b0e1d322b04ec93138d0eddceace90987c344a67a49dc52
6
+ metadata.gz: 573fcda9fdfbd0ff4234bba0cdcf803fdf34d49786e4ecba3af230cb92827ffa3c6f2f9a5ca7bcfe086c0835ca270499549d9c22b9224fd93925d7bd5c6bdcf3
7
+ data.tar.gz: 2810f3f8f678ecf6fac952eb445dae8d8716fcb96f7c82924c29785319ba3b3cac1f55da95ab615fb22d2e7890d4884e5c509173e170d1af6a3c2b2af339c4a2
data/CHANGELOG CHANGED
@@ -1,3 +1,8 @@
1
+ == 1.13.1 2013-12-23
2
+
3
+ * bugfixes
4
+ * Fix that Excelx creation could blow up due to nil rels files. #90
5
+
1
6
  == 1.13.0 2013-12-05
2
7
 
3
8
  * enhancements
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.13.0
1
+ 1.13.1
data/lib/roo/excelx.rb CHANGED
@@ -99,15 +99,9 @@ class Roo::Excelx < Roo::Base
99
99
  @styles_doc = load_xml(File.join(tmpdir, 'roo_styles.xml'))
100
100
  read_styles(@styles_doc)
101
101
  end
102
- @sheet_doc = @sheet_files.compact.map do |item|
103
- load_xml(item)
104
- end
105
- @comments_doc = @comments_files.compact.map do |item|
106
- load_xml(item)
107
- end
108
- @rels_doc = @rels_files.map do |item|
109
- load_xml(item)
110
- end
102
+ @sheet_doc = load_xmls(@sheet_files)
103
+ @comments_doc = load_xmls(@comments_files)
104
+ @rels_doc = load_xmls(@rels_files)
111
105
  end
112
106
  super(filename, options)
113
107
  @formula = Hash.new
@@ -347,6 +341,12 @@ class Roo::Excelx < Roo::Base
347
341
 
348
342
  private
349
343
 
344
+ def load_xmls(paths)
345
+ paths.compact.map do |item|
346
+ load_xml(item)
347
+ end
348
+ end
349
+
350
350
  # helper function to set the internal representation of cells
351
351
  def set_cell_values(sheet,x,y,i,v,value_type,formula,
352
352
  excelx_type=nil,
data/lib/roo/google.rb CHANGED
@@ -138,8 +138,8 @@ class Roo::Google < Roo::Base
138
138
  if @cells_read[sheet]
139
139
  value, value_type = determine_datatype(value.to_s)
140
140
 
141
- _set_value(col,row,value,sheet)
142
- set_type(col,row,value_type,sheet)
141
+ _set_value(row,col,value,sheet)
142
+ set_type(row,col,value_type,sheet)
143
143
  end
144
144
  end
145
145
 
data/roo.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "roo"
8
- s.version = "1.13.0"
8
+ s.version = "1.13.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Thomas Preymesser", "Hugh McGowan", "Ben Woosley"]
12
- s.date = "2013-12-05"
12
+ s.date = "2013-12-23"
13
13
  s.description = "Roo can access the contents of various spreadsheet files. It can handle\n* OpenOffice\n* Excel\n* Google spreadsheets\n* Excelx\n* LibreOffice\n* CSV"
14
14
  s.email = "ruby.ruby.ruby.roo@gmail.com"
15
15
  s.extra_rdoc_files = [
@@ -42,6 +42,7 @@ Gem::Specification.new do |s|
42
42
  "scripts/txt2html",
43
43
  "spec/fixtures/vcr_cassettes/google_drive.yml",
44
44
  "spec/fixtures/vcr_cassettes/google_drive_access_token.yml",
45
+ "spec/fixtures/vcr_cassettes/google_drive_set.yml",
45
46
  "spec/lib/roo/base_spec.rb",
46
47
  "spec/lib/roo/csv_spec.rb",
47
48
  "spec/lib/roo/excel2003xml_spec.rb",
@@ -102,6 +103,7 @@ Gem::Specification.new do |s|
102
103
  "test/files/excel2003.xml",
103
104
  "test/files/false_encoding.xls",
104
105
  "test/files/false_encoding.xml",
106
+ "test/files/file_item_error.xlsx",
105
107
  "test/files/formula.ods",
106
108
  "test/files/formula.xls",
107
109
  "test/files/formula.xlsx",
@@ -177,7 +179,7 @@ Gem::Specification.new do |s|
177
179
  s.required_ruby_version = Gem::Requirement.new(">= 1.9.0")
178
180
  s.rubygems_version = "2.0.14"
179
181
  s.summary = "Roo can access the contents of various spreadsheet files."
180
- s.test_files = ["spec/fixtures/vcr_cassettes/google_drive.yml", "spec/fixtures/vcr_cassettes/google_drive_access_token.yml", "spec/lib/roo/base_spec.rb", "spec/lib/roo/csv_spec.rb", "spec/lib/roo/excel2003xml_spec.rb", "spec/lib/roo/excel_spec.rb", "spec/lib/roo/excelx/format_spec.rb", "spec/lib/roo/excelx_spec.rb", "spec/lib/roo/google_spec.rb", "spec/lib/roo/libreoffice_spec.rb", "spec/lib/roo/openoffice_spec.rb", "spec/lib/roo/spreadsheet_spec.rb", "spec/spec_helper.rb", "test/all_ss.rb", "test/files/1900_base.xls", "test/files/1900_base.xlsx", "test/files/1904_base.xls", "test/files/1904_base.xlsx", "test/files/Bibelbund.csv", "test/files/Bibelbund.ods", "test/files/Bibelbund.xls", "test/files/Bibelbund.xlsx", "test/files/Bibelbund.xml", "test/files/Bibelbund1.ods", "test/files/Pfand_from_windows_phone.xlsx", "test/files/bad_excel_date.xls", "test/files/bbu.ods", "test/files/bbu.xls", "test/files/bbu.xlsx", "test/files/bbu.xml", "test/files/bode-v1.ods.zip", "test/files/bode-v1.xls.zip", "test/files/boolean.csv", "test/files/boolean.ods", "test/files/boolean.xls", "test/files/boolean.xlsx", "test/files/boolean.xml", "test/files/borders.ods", "test/files/borders.xls", "test/files/borders.xlsx", "test/files/borders.xml", "test/files/bug-numbered-sheet-names.xlsx", "test/files/bug-row-column-fixnum-float.xls", "test/files/bug-row-column-fixnum-float.xml", "test/files/comments.ods", "test/files/comments.xls", "test/files/comments.xlsx", "test/files/csvtypes.csv", "test/files/datetime.ods", "test/files/datetime.xls", "test/files/datetime.xlsx", "test/files/datetime.xml", "test/files/datetime_floatconv.xls", "test/files/datetime_floatconv.xml", "test/files/dreimalvier.ods", "test/files/emptysheets.ods", "test/files/emptysheets.xls", "test/files/emptysheets.xlsx", "test/files/emptysheets.xml", "test/files/excel2003.xml", "test/files/false_encoding.xls", "test/files/false_encoding.xml", "test/files/formula.ods", "test/files/formula.xls", "test/files/formula.xlsx", "test/files/formula.xml", "test/files/formula_parse_error.xls", "test/files/formula_parse_error.xml", "test/files/formula_string_error.xlsx", "test/files/html-escape.ods", "test/files/link.xls", "test/files/link.xlsx", "test/files/matrix.ods", "test/files/matrix.xls", "test/files/named_cells.ods", "test/files/named_cells.xls", "test/files/named_cells.xlsx", "test/files/no_spreadsheet_file.txt", "test/files/numbers1.csv", "test/files/numbers1.ods", "test/files/numbers1.xls", "test/files/numbers1.xlsx", "test/files/numbers1.xml", "test/files/only_one_sheet.ods", "test/files/only_one_sheet.xls", "test/files/only_one_sheet.xlsx", "test/files/only_one_sheet.xml", "test/files/paragraph.ods", "test/files/paragraph.xls", "test/files/paragraph.xlsx", "test/files/paragraph.xml", "test/files/prova.xls", "test/files/ric.ods", "test/files/simple_spreadsheet.ods", "test/files/simple_spreadsheet.xls", "test/files/simple_spreadsheet.xlsx", "test/files/simple_spreadsheet.xml", "test/files/simple_spreadsheet_from_italo.ods", "test/files/simple_spreadsheet_from_italo.xls", "test/files/simple_spreadsheet_from_italo.xml", "test/files/so_datetime.csv", "test/files/style.ods", "test/files/style.xls", "test/files/style.xlsx", "test/files/style.xml", "test/files/time-test.csv", "test/files/time-test.ods", "test/files/time-test.xls", "test/files/time-test.xlsx", "test/files/time-test.xml", "test/files/type_excel.ods", "test/files/type_excel.xlsx", "test/files/type_excelx.ods", "test/files/type_excelx.xls", "test/files/type_openoffice.xls", "test/files/type_openoffice.xlsx", "test/files/whitespace.ods", "test/files/whitespace.xls", "test/files/whitespace.xlsx", "test/files/whitespace.xml", "test/rm_sub_test.rb", "test/rm_test.rb", "test/test_generic_spreadsheet.rb", "test/test_helper.rb", "test/test_roo.rb"]
182
+ s.test_files = ["spec/fixtures/vcr_cassettes/google_drive.yml", "spec/fixtures/vcr_cassettes/google_drive_access_token.yml", "spec/fixtures/vcr_cassettes/google_drive_set.yml", "spec/lib/roo/base_spec.rb", "spec/lib/roo/csv_spec.rb", "spec/lib/roo/excel2003xml_spec.rb", "spec/lib/roo/excel_spec.rb", "spec/lib/roo/excelx/format_spec.rb", "spec/lib/roo/excelx_spec.rb", "spec/lib/roo/google_spec.rb", "spec/lib/roo/libreoffice_spec.rb", "spec/lib/roo/openoffice_spec.rb", "spec/lib/roo/spreadsheet_spec.rb", "spec/spec_helper.rb", "test/all_ss.rb", "test/files/1900_base.xls", "test/files/1900_base.xlsx", "test/files/1904_base.xls", "test/files/1904_base.xlsx", "test/files/Bibelbund.csv", "test/files/Bibelbund.ods", "test/files/Bibelbund.xls", "test/files/Bibelbund.xlsx", "test/files/Bibelbund.xml", "test/files/Bibelbund1.ods", "test/files/Pfand_from_windows_phone.xlsx", "test/files/bad_excel_date.xls", "test/files/bbu.ods", "test/files/bbu.xls", "test/files/bbu.xlsx", "test/files/bbu.xml", "test/files/bode-v1.ods.zip", "test/files/bode-v1.xls.zip", "test/files/boolean.csv", "test/files/boolean.ods", "test/files/boolean.xls", "test/files/boolean.xlsx", "test/files/boolean.xml", "test/files/borders.ods", "test/files/borders.xls", "test/files/borders.xlsx", "test/files/borders.xml", "test/files/bug-numbered-sheet-names.xlsx", "test/files/bug-row-column-fixnum-float.xls", "test/files/bug-row-column-fixnum-float.xml", "test/files/comments.ods", "test/files/comments.xls", "test/files/comments.xlsx", "test/files/csvtypes.csv", "test/files/datetime.ods", "test/files/datetime.xls", "test/files/datetime.xlsx", "test/files/datetime.xml", "test/files/datetime_floatconv.xls", "test/files/datetime_floatconv.xml", "test/files/dreimalvier.ods", "test/files/emptysheets.ods", "test/files/emptysheets.xls", "test/files/emptysheets.xlsx", "test/files/emptysheets.xml", "test/files/excel2003.xml", "test/files/false_encoding.xls", "test/files/false_encoding.xml", "test/files/file_item_error.xlsx", "test/files/formula.ods", "test/files/formula.xls", "test/files/formula.xlsx", "test/files/formula.xml", "test/files/formula_parse_error.xls", "test/files/formula_parse_error.xml", "test/files/formula_string_error.xlsx", "test/files/html-escape.ods", "test/files/link.xls", "test/files/link.xlsx", "test/files/matrix.ods", "test/files/matrix.xls", "test/files/named_cells.ods", "test/files/named_cells.xls", "test/files/named_cells.xlsx", "test/files/no_spreadsheet_file.txt", "test/files/numbers1.csv", "test/files/numbers1.ods", "test/files/numbers1.xls", "test/files/numbers1.xlsx", "test/files/numbers1.xml", "test/files/only_one_sheet.ods", "test/files/only_one_sheet.xls", "test/files/only_one_sheet.xlsx", "test/files/only_one_sheet.xml", "test/files/paragraph.ods", "test/files/paragraph.xls", "test/files/paragraph.xlsx", "test/files/paragraph.xml", "test/files/prova.xls", "test/files/ric.ods", "test/files/simple_spreadsheet.ods", "test/files/simple_spreadsheet.xls", "test/files/simple_spreadsheet.xlsx", "test/files/simple_spreadsheet.xml", "test/files/simple_spreadsheet_from_italo.ods", "test/files/simple_spreadsheet_from_italo.xls", "test/files/simple_spreadsheet_from_italo.xml", "test/files/so_datetime.csv", "test/files/style.ods", "test/files/style.xls", "test/files/style.xlsx", "test/files/style.xml", "test/files/time-test.csv", "test/files/time-test.ods", "test/files/time-test.xls", "test/files/time-test.xlsx", "test/files/time-test.xml", "test/files/type_excel.ods", "test/files/type_excel.xlsx", "test/files/type_excelx.ods", "test/files/type_excelx.xls", "test/files/type_openoffice.xls", "test/files/type_openoffice.xlsx", "test/files/whitespace.ods", "test/files/whitespace.xls", "test/files/whitespace.xlsx", "test/files/whitespace.xml", "test/rm_sub_test.rb", "test/rm_test.rb", "test/test_generic_spreadsheet.rb", "test/test_helper.rb", "test/test_roo.rb"]
181
183
 
182
184
  if s.respond_to? :specification_version then
183
185
  s.specification_version = 4
@@ -0,0 +1,857 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://www.google.com/accounts/ClientLogin
6
+ body:
7
+ encoding: UTF-8
8
+ string: accountType=HOSTED_OR_GOOGLE&Email=user&Passwd=password&service=wise&source=Gimite-RubyGoogleDrive-1.00
9
+ headers:
10
+ Content-Type:
11
+ - application/x-www-form-urlencoded
12
+ Accept-Encoding:
13
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
14
+ Accept:
15
+ - '*/*'
16
+ User-Agent:
17
+ - Ruby
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Content-Type:
24
+ - text/plain
25
+ X-Frame-Options:
26
+ - DENY
27
+ Cache-Control:
28
+ - no-cache, no-store
29
+ Pragma:
30
+ - no-cache
31
+ Expires:
32
+ - Mon, 01-Jan-1990 00:00:00 GMT
33
+ Date:
34
+ - Fri, 06 Dec 2013 18:42:35 GMT
35
+ X-Content-Type-Options:
36
+ - nosniff
37
+ X-Xss-Protection:
38
+ - 1; mode=block
39
+ Content-Length:
40
+ - '1095'
41
+ Server:
42
+ - GSE
43
+ Alternate-Protocol:
44
+ - 443:quic
45
+ body:
46
+ encoding: UTF-8
47
+ string: |
48
+ SID=DQAAAMoAAAA8IKlqi2aGAAGTzd6pCfMwqwabb79_cvhermJV2M78CNvpiYiujQEkQMienaye4SnKIV-oS6r6KEdGp46SZy5radXnkV5pxGSHLWvExZh7pGH7o3cgmvF8N3WX_FWdGQatg_-ypztq4tgHb_E3wlQtRmT1snh8lqVDIqoaXXdlQJ_WKvgPW8NBAOQBMsnb2fV0FX2abuth0DzS6t9gpR_f-1w8d8jI7rwgBhVg0PxxHPUJMnciPDaEjK3WxLj-zGgPCZfr6vBG8asFAjFzCDYO
49
+ LSID=DQAAAMsAAADMWltQuejlYd78Px9RfXhcHnb7tlPHfKPY4i69F9Hi0dhIQbyFRlHVcyMKaR3ajpm39Tx27o5qgddVcti2kZ3CoOB6bthhPlKls7s4G9nz8ObyHSilTTNP5tjNdNNz0--4NP9lacZ-UHhKoDGKnH6lgKFi6BaCAHpQzXo-vsvStxXqo0D1OE81zL2UOYRvN1rc9evr04qtlSvCHQ8THv7eH8SGwZrdf_okjtKQDyLaEJFn5d0_YP-CiM1JLNyNtjwk6E3cWEi8NUrZh459-Lif
50
+ Auth=DQAAAMwAAADMWltQuejlYd78Px9RfXhcHnb7tlPHfKPY4i69F9Hi0dhIQbyFRlHVcyMKaR3ajpn7yZLj-g3LYQk1SM-i9ejg3r4yH0rj9yZsBcy0ZiJV1L45w4jGXlgrvse68D5axixvDp7T7u6P6K-eOJj2SaKw8vBj156hBEyn4CQFJ0tVUjl5UPAN9Wt8hJmRNqULG3LoxYwLidLgPVjCtL-lF0YnUiSwbolVBzZAbyeYk1QSzX9xT5ms3sTQ4ESz42Bg9SQbc6kdlcWzvmQ_sO5GfrTY
51
+ http_version:
52
+ recorded_at: Fri, 06 Dec 2013 18:42:32 GMT
53
+ - request:
54
+ method: post
55
+ uri: https://www.google.com/accounts/ClientLogin
56
+ body:
57
+ encoding: UTF-8
58
+ string: accountType=HOSTED_OR_GOOGLE&Email=user&Passwd=password&service=writely&source=Gimite-RubyGoogleDrive-1.00
59
+ headers:
60
+ Content-Type:
61
+ - application/x-www-form-urlencoded
62
+ Accept-Encoding:
63
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
64
+ Accept:
65
+ - '*/*'
66
+ User-Agent:
67
+ - Ruby
68
+ response:
69
+ status:
70
+ code: 200
71
+ message: OK
72
+ headers:
73
+ Content-Type:
74
+ - text/plain
75
+ X-Frame-Options:
76
+ - DENY
77
+ Cache-Control:
78
+ - no-cache, no-store
79
+ Pragma:
80
+ - no-cache
81
+ Expires:
82
+ - Mon, 01-Jan-1990 00:00:00 GMT
83
+ Date:
84
+ - Fri, 06 Dec 2013 18:42:35 GMT
85
+ X-Content-Type-Options:
86
+ - nosniff
87
+ X-Xss-Protection:
88
+ - 1; mode=block
89
+ Content-Length:
90
+ - '1073'
91
+ Server:
92
+ - GSE
93
+ Alternate-Protocol:
94
+ - 443:quic
95
+ body:
96
+ encoding: UTF-8
97
+ string: |
98
+ SID=DQAAAMoAAAA8IKlqi2aGAAGTzd6pCfMwqwabb79_cvhermJV2M78CNvpiYiujQEkQMienaye4SnKIV-oS6r6KEdGp46SZy5radXnkV5pxGSHLWvExZh7pGH7o3cgmvF8N3WX_FWdGQatg_-ypztq4tgHb_E3wlQtRmT1snh8lqVDIqoaXXdlQJ_WKvgPW8NBAOQBMsnb2fV0FX2abuth0DzS6t9gpR_f-1w8d8jI7rwgBhVg0PxxHPUJMnciPDaEjK3WxLj-zGgPCZfr6vBG8asFAjFzCDYO
99
+ LSID=DQAAAMsAAADMWltQuejlYd78Px9RfXhcHnb7tlPHfKPY4i69F9Hi0dhIQbyFRlHVcyMKaR3ajpm39Tx27o5qgddVcti2kZ3CoOB6bthhPlKls7s4G9nz8ObyHSilTTNP5tjNdNNz0--4NP9lacZ-UHhKoDGKnH6lgKFi6BaCAHpQzXo-vsvStxXqo0D1OE81zL2UOYRvN1rc9evr04qtlSvCHQ8THv7eH8SGwZrdf_okjtKQDyLaEJFn5d0_YP-CiM1JLNyNtjwk6E3cWEi8NUrZh459-Lif
100
+ Auth=DQAAAMwAAADMWltQuejlYd78Px9RfXhcHnb7tlPHfKPY4i69F9Hi0dhIQbyFRlHVcyMKaR3ajpn7yZLj-g3LYQk1SM-i9ejg3r4yH0rj9yZsBcy0ZiJV1L45w4jGXlgrvse68D5axixvDp7T7u6P6K-eOJj2SaKw8vBj156hBEyn4CQFJ0tVUjl5UPAN9Wt8hJmRNqULG3LoxYwLidLgPVjCtL-lF0YnUiSwbolVBzZAbyeYk1QSzX9xT5ms3sTQ4ESz42Bg9SQbc6kdlcWzvmQ_sO5GfrTY
101
+ http_version:
102
+ recorded_at: Fri, 06 Dec 2013 18:42:32 GMT
103
+ - request:
104
+ method: get
105
+ uri: https://spreadsheets.google.com/feeds/worksheets/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/private/full
106
+ body:
107
+ encoding: US-ASCII
108
+ string: ''
109
+ headers:
110
+ Authorization:
111
+ Authorization:
112
+ - GoogleLogin auth=DQAAAMwAAADMWltQuejlYd78Px9RfXhcHnb7tlPHfKPY4i69F9Hi0dhIQbyFRlHVcyMKaR3ajpn7yZLj-g3LYQk1SM-i9ejg3r4yH0rj9yZsBcy0ZiJV1L45w4jGXlgrvse68D5axixvDp7T7u6P6K-eOJj2SaKw8vBj156hBEyn4CQFJ0tVUjl5UPAN9Wt8hJmRNqULG3LoxYwLidLgPVjCtL-lF0YnUiSwbolVBzZAbyeYk1QSzX9xT5ms3sTQ4ESz42Bg9SQbc6kdlcWzvmQ_sO5GfrTY
113
+ Accept-Encoding:
114
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
115
+ Accept:
116
+ - '*/*'
117
+ User-Agent:
118
+ - Ruby
119
+ response:
120
+ status:
121
+ code: 200
122
+ message: OK
123
+ headers:
124
+ Content-Type:
125
+ - application/atom+xml; charset=UTF-8
126
+ Expires:
127
+ - Fri, 06 Dec 2013 18:42:35 GMT
128
+ Date:
129
+ - Fri, 06 Dec 2013 18:42:35 GMT
130
+ Cache-Control:
131
+ - private, max-age=0, must-revalidate, no-transform
132
+ Vary:
133
+ - Accept, X-GData-Authorization, GData-Version
134
+ Gdata-Version:
135
+ - '1.0'
136
+ Last-Modified:
137
+ - Fri, 06 Dec 2013 18:42:13 GMT
138
+ Set-Cookie:
139
+ - NID=67=P6-qngqROR4Rd40ur5alzTcL4Ymf77hX1baonK7-UvwB4TfiXr0KHJipkoLhh9v2fsZJuF__XCss6QXQTYOJrhaalaHkDCjivh162BKtMvOZOQ__hqLgx3jynuNbXPTL;Domain=.google.com;Path=/;Expires=Sat,
140
+ 07-Jun-2014 18:42:35 GMT;HttpOnly
141
+ P3p:
142
+ - CP="This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657
143
+ for more info."
144
+ X-Content-Type-Options:
145
+ - nosniff
146
+ X-Frame-Options:
147
+ - SAMEORIGIN
148
+ X-Xss-Protection:
149
+ - 1; mode=block
150
+ Server:
151
+ - GSE
152
+ Alternate-Protocol:
153
+ - 443:quic
154
+ Transfer-Encoding:
155
+ - chunked
156
+ body:
157
+ encoding: UTF-8
158
+ string: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom'
159
+ xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gs='http://schemas.google.com/spreadsheets/2006'><id>https://spreadsheets.google.com/feeds/worksheets/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/private/full</id><updated>2013-12-06T18:42:13.795Z</updated><category
160
+ scheme='http://schemas.google.com/spreadsheets/2006' term='http://schemas.google.com/spreadsheets/2006#worksheet'/><title
161
+ type='text'>Roo test</title><link rel='alternate' type='text/html' href='https://spreadsheets.google.com/ccc?key=0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc'/><link
162
+ rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/worksheets/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/private/full'/><link
163
+ rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/worksheets/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/private/full'/><link
164
+ rel='self' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/worksheets/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/private/full'/><author><name>paul.jungwirth</name><email>paul.jungwirth@gmail.com</email></author><openSearch:totalResults>1</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><entry><id>https://spreadsheets.google.com/feeds/worksheets/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/private/full/od6</id><updated>2013-12-06T18:42:13.795Z</updated><category
165
+ scheme='http://schemas.google.com/spreadsheets/2006' term='http://schemas.google.com/spreadsheets/2006#worksheet'/><title
166
+ type='text'>Sheet1</title><content type='text'>Sheet1</content><link rel='http://schemas.google.com/spreadsheets/2006#listfeed'
167
+ type='application/atom+xml' href='https://spreadsheets.google.com/feeds/list/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full'/><link
168
+ rel='http://schemas.google.com/spreadsheets/2006#cellsfeed' type='application/atom+xml'
169
+ href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full'/><link
170
+ rel='http://schemas.google.com/visualization/2008#visualizationApi' type='application/atom+xml'
171
+ href='https://spreadsheets.google.com/tq?key=0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc&amp;sheet=od6'/><link
172
+ rel='self' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/worksheets/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/private/full/od6'/><link
173
+ rel='edit' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/worksheets/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/private/full/od6/dnf6uj3veg'/><gs:rowCount>100</gs:rowCount><gs:colCount>20</gs:colCount></entry></feed>
174
+ http_version:
175
+ recorded_at: Fri, 06 Dec 2013 18:42:33 GMT
176
+ - request:
177
+ method: get
178
+ uri: https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full
179
+ body:
180
+ encoding: US-ASCII
181
+ string: ''
182
+ headers:
183
+ Authorization:
184
+ Authorization:
185
+ - GoogleLogin auth=DQAAAMwAAADMWltQuejlYd78Px9RfXhcHnb7tlPHfKPY4i69F9Hi0dhIQbyFRlHVcyMKaR3ajpn7yZLj-g3LYQk1SM-i9ejg3r4yH0rj9yZsBcy0ZiJV1L45w4jGXlgrvse68D5axixvDp7T7u6P6K-eOJj2SaKw8vBj156hBEyn4CQFJ0tVUjl5UPAN9Wt8hJmRNqULG3LoxYwLidLgPVjCtL-lF0YnUiSwbolVBzZAbyeYk1QSzX9xT5ms3sTQ4ESz42Bg9SQbc6kdlcWzvmQ_sO5GfrTY
186
+ Accept-Encoding:
187
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
188
+ Accept:
189
+ - '*/*'
190
+ User-Agent:
191
+ - Ruby
192
+ response:
193
+ status:
194
+ code: 200
195
+ message: OK
196
+ headers:
197
+ Content-Type:
198
+ - application/atom+xml; charset=UTF-8
199
+ Expires:
200
+ - Fri, 06 Dec 2013 18:42:36 GMT
201
+ Date:
202
+ - Fri, 06 Dec 2013 18:42:36 GMT
203
+ Cache-Control:
204
+ - private, max-age=0, must-revalidate, no-transform
205
+ Vary:
206
+ - Accept, X-GData-Authorization, GData-Version
207
+ Gdata-Version:
208
+ - '1.0'
209
+ Last-Modified:
210
+ - Fri, 06 Dec 2013 18:42:13 GMT
211
+ Set-Cookie:
212
+ - NID=67=tZw2vXm2UjFtmkwMXxS9aO0pvNxSWLJpLAQ4exwsBXTAWB9zrS-HMztaLet6prwWCL1Tnb0jfQ2O84S4-Quoc_CZV7H8HgFM8wbXpHiBDzIAEx5MteO1NnCCvkBxWBdb;Domain=.google.com;Path=/;Expires=Sat,
213
+ 07-Jun-2014 18:42:36 GMT;HttpOnly
214
+ P3p:
215
+ - CP="This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657
216
+ for more info."
217
+ X-Content-Type-Options:
218
+ - nosniff
219
+ X-Frame-Options:
220
+ - SAMEORIGIN
221
+ X-Xss-Protection:
222
+ - 1; mode=block
223
+ Server:
224
+ - GSE
225
+ Alternate-Protocol:
226
+ - 443:quic
227
+ Transfer-Encoding:
228
+ - chunked
229
+ body:
230
+ encoding: UTF-8
231
+ string: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom'
232
+ xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gs='http://schemas.google.com/spreadsheets/2006'
233
+ xmlns:batch='http://schemas.google.com/gdata/batch'><id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full</id><updated>2013-12-06T18:42:13.795Z</updated><category
234
+ scheme='http://schemas.google.com/spreadsheets/2006' term='http://schemas.google.com/spreadsheets/2006#cell'/><title
235
+ type='text'>Sheet1</title><link rel='alternate' type='text/html' href='https://spreadsheets.google.com/ccc?key=0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc'/><link
236
+ rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full'/><link
237
+ rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full'/><link
238
+ rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/batch'/><link
239
+ rel='self' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full'/><author><name>paul.jungwirth</name><email>paul.jungwirth@gmail.com</email></author><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><gs:rowCount>100</gs:rowCount><gs:colCount>20</gs:colCount><entry><id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R1C1</id><updated>2013-12-06T18:42:13.795Z</updated><category
240
+ scheme='http://schemas.google.com/spreadsheets/2006' term='http://schemas.google.com/spreadsheets/2006#cell'/><title
241
+ type='text'>A1</title><content type='text'>1x1</content><link rel='self' type='application/atom+xml'
242
+ href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R1C1'/><link
243
+ rel='edit' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R1C1/138q'/><gs:cell
244
+ row='1' col='1' inputValue='1x1'>1x1</gs:cell></entry><entry><id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R1C2</id><updated>2013-12-06T18:42:13.795Z</updated><category
245
+ scheme='http://schemas.google.com/spreadsheets/2006' term='http://schemas.google.com/spreadsheets/2006#cell'/><title
246
+ type='text'>B1</title><content type='text'>1x2</content><link rel='self' type='application/atom+xml'
247
+ href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R1C2'/><link
248
+ rel='edit' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R1C2/a0omj'/><gs:cell
249
+ row='1' col='2' inputValue='1x2'>1x2</gs:cell></entry><entry><id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R2C1</id><updated>2013-12-06T18:42:13.795Z</updated><category
250
+ scheme='http://schemas.google.com/spreadsheets/2006' term='http://schemas.google.com/spreadsheets/2006#cell'/><title
251
+ type='text'>A2</title><content type='text'>2x1</content><link rel='self' type='application/atom+xml'
252
+ href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R2C1'/><link
253
+ rel='edit' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R2C1/2ijv'/><gs:cell
254
+ row='2' col='1' inputValue='2x1'>2x1</gs:cell></entry><entry><id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R2C2</id><updated>2013-12-06T18:42:13.795Z</updated><category
255
+ scheme='http://schemas.google.com/spreadsheets/2006' term='http://schemas.google.com/spreadsheets/2006#cell'/><title
256
+ type='text'>B2</title><content type='text'>2x2</content><link rel='self' type='application/atom+xml'
257
+ href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R2C2'/><link
258
+ rel='edit' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R2C2/a23xo'/><gs:cell
259
+ row='2' col='2' inputValue='2x2'>2x2</gs:cell></entry></feed>
260
+ http_version:
261
+ recorded_at: Fri, 06 Dec 2013 18:42:33 GMT
262
+ - request:
263
+ method: get
264
+ uri: https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full?max-col=1&max-row=1&min-col=1&min-row=1&return-empty=true
265
+ body:
266
+ encoding: US-ASCII
267
+ string: ''
268
+ headers:
269
+ Authorization:
270
+ Authorization:
271
+ - GoogleLogin auth=DQAAAMwAAADMWltQuejlYd78Px9RfXhcHnb7tlPHfKPY4i69F9Hi0dhIQbyFRlHVcyMKaR3ajpn7yZLj-g3LYQk1SM-i9ejg3r4yH0rj9yZsBcy0ZiJV1L45w4jGXlgrvse68D5axixvDp7T7u6P6K-eOJj2SaKw8vBj156hBEyn4CQFJ0tVUjl5UPAN9Wt8hJmRNqULG3LoxYwLidLgPVjCtL-lF0YnUiSwbolVBzZAbyeYk1QSzX9xT5ms3sTQ4ESz42Bg9SQbc6kdlcWzvmQ_sO5GfrTY
272
+ Accept-Encoding:
273
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
274
+ Accept:
275
+ - '*/*'
276
+ User-Agent:
277
+ - Ruby
278
+ response:
279
+ status:
280
+ code: 200
281
+ message: OK
282
+ headers:
283
+ Content-Type:
284
+ - application/atom+xml; charset=UTF-8
285
+ Expires:
286
+ - Fri, 06 Dec 2013 18:42:36 GMT
287
+ Date:
288
+ - Fri, 06 Dec 2013 18:42:36 GMT
289
+ Cache-Control:
290
+ - private, max-age=0, must-revalidate, no-transform
291
+ Vary:
292
+ - Accept, X-GData-Authorization, GData-Version
293
+ Gdata-Version:
294
+ - '1.0'
295
+ Last-Modified:
296
+ - Fri, 06 Dec 2013 18:42:13 GMT
297
+ Set-Cookie:
298
+ - NID=67=daYpj77OMuRnSTCPbAE3O_WkWmcaH_CUTFTOfwSJmZCFCrAxhYtgPM0H6MK9HJaq21e3EPg0uvngJ94R_3QgYkCSgpC5tvmWHPpI4jraUD9K5TPt3O4KUfCfLMbJhG9z;Domain=.google.com;Path=/;Expires=Sat,
299
+ 07-Jun-2014 18:42:36 GMT;HttpOnly
300
+ P3p:
301
+ - CP="This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657
302
+ for more info."
303
+ X-Content-Type-Options:
304
+ - nosniff
305
+ X-Frame-Options:
306
+ - SAMEORIGIN
307
+ X-Xss-Protection:
308
+ - 1; mode=block
309
+ Server:
310
+ - GSE
311
+ Alternate-Protocol:
312
+ - 443:quic
313
+ Transfer-Encoding:
314
+ - chunked
315
+ body:
316
+ encoding: UTF-8
317
+ string: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom'
318
+ xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gs='http://schemas.google.com/spreadsheets/2006'
319
+ xmlns:batch='http://schemas.google.com/gdata/batch'><id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full</id><updated>2013-12-06T18:42:13.795Z</updated><category
320
+ scheme='http://schemas.google.com/spreadsheets/2006' term='http://schemas.google.com/spreadsheets/2006#cell'/><title
321
+ type='text'>Sheet1</title><link rel='alternate' type='text/html' href='https://spreadsheets.google.com/ccc?key=0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc'/><link
322
+ rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full'/><link
323
+ rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full'/><link
324
+ rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/batch'/><link
325
+ rel='self' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full?min-col=1&amp;max-col=1&amp;return-empty=true&amp;max-row=1&amp;min-row=1'/><author><name>paul.jungwirth</name><email>paul.jungwirth@gmail.com</email></author><openSearch:totalResults>1</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><gs:rowCount>100</gs:rowCount><gs:colCount>20</gs:colCount><entry><id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R1C1</id><updated>2013-12-06T18:42:13.795Z</updated><category
326
+ scheme='http://schemas.google.com/spreadsheets/2006' term='http://schemas.google.com/spreadsheets/2006#cell'/><title
327
+ type='text'>A1</title><content type='text'>1x1</content><link rel='self' type='application/atom+xml'
328
+ href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R1C1'/><link
329
+ rel='edit' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R1C1/138q'/><gs:cell
330
+ row='1' col='1' inputValue='1x1'>1x1</gs:cell></entry></feed>
331
+ http_version:
332
+ recorded_at: Fri, 06 Dec 2013 18:42:33 GMT
333
+ - request:
334
+ method: post
335
+ uri: https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/batch
336
+ body:
337
+ encoding: UTF-8
338
+ string: |2
339
+ <feed xmlns="http://www.w3.org/2005/Atom"
340
+ xmlns:batch="http://schemas.google.com/gdata/batch"
341
+ xmlns:gs="http://schemas.google.com/spreadsheets/2006">
342
+ <id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full</id>
343
+ <entry>
344
+ <batch:id>1,1</batch:id>
345
+ <batch:operation type="update"/>
346
+ <id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R1C1</id>
347
+ <link rel="edit" type="application/atom+xml"
348
+ href="https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R1C1/138q"/>
349
+ <gs:cell row="1" col="1" inputValue="1x1"/>
350
+ </entry>
351
+ </feed>
352
+ headers:
353
+ Authorization:
354
+ Authorization:
355
+ - GoogleLogin auth=DQAAAMwAAADMWltQuejlYd78Px9RfXhcHnb7tlPHfKPY4i69F9Hi0dhIQbyFRlHVcyMKaR3ajpn7yZLj-g3LYQk1SM-i9ejg3r4yH0rj9yZsBcy0ZiJV1L45w4jGXlgrvse68D5axixvDp7T7u6P6K-eOJj2SaKw8vBj156hBEyn4CQFJ0tVUjl5UPAN9Wt8hJmRNqULG3LoxYwLidLgPVjCtL-lF0YnUiSwbolVBzZAbyeYk1QSzX9xT5ms3sTQ4ESz42Bg9SQbc6kdlcWzvmQ_sO5GfrTY
356
+ Content-Type:
357
+ - application/atom+xml
358
+ Accept-Encoding:
359
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
360
+ Accept:
361
+ - '*/*'
362
+ User-Agent:
363
+ - Ruby
364
+ response:
365
+ status:
366
+ code: 200
367
+ message: OK
368
+ headers:
369
+ Content-Type:
370
+ - application/atom+xml; charset=UTF-8
371
+ Gdata-Version:
372
+ - '1.0'
373
+ Set-Cookie:
374
+ - NID=67=wQmh2rA0psG9Dw1Q5cz3waZRudK84WUs7qtSv2Y_ROVwI0U5uKu0S9AcWRO9rHVjjfxmb4F8S0YYLuh0SIPeDbWU25qHG0gwEsCyGEkV0eWewcz6qeT2vGQp3L6A8cBw;Domain=.google.com;Path=/;Expires=Sat,
375
+ 07-Jun-2014 18:42:36 GMT;HttpOnly
376
+ P3p:
377
+ - CP="This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657
378
+ for more info."
379
+ Date:
380
+ - Fri, 06 Dec 2013 18:42:36 GMT
381
+ Expires:
382
+ - Fri, 06 Dec 2013 18:42:36 GMT
383
+ Cache-Control:
384
+ - private, max-age=0
385
+ X-Content-Type-Options:
386
+ - nosniff
387
+ X-Frame-Options:
388
+ - SAMEORIGIN
389
+ X-Xss-Protection:
390
+ - 1; mode=block
391
+ Server:
392
+ - GSE
393
+ Alternate-Protocol:
394
+ - 443:quic
395
+ Transfer-Encoding:
396
+ - chunked
397
+ body:
398
+ encoding: UTF-8
399
+ string: <?xml version='1.0' encoding='UTF-8'?><atom:feed xmlns:atom='http://www.w3.org/2005/Atom'
400
+ xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gs='http://schemas.google.com/spreadsheets/2006'
401
+ xmlns:batch='http://schemas.google.com/gdata/batch'><atom:id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/batch/1386355356544</atom:id><atom:updated>2013-12-06T18:42:36.555Z</atom:updated><atom:title
402
+ type='text'>Batch Feed</atom:title><atom:entry><atom:id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R1C1</atom:id><atom:updated>2013-12-06T18:42:36.550Z</atom:updated><atom:category
403
+ scheme='http://schemas.google.com/spreadsheets/2006' term='http://schemas.google.com/spreadsheets/2006#cell'/><atom:title
404
+ type='text'>A1</atom:title><atom:content type='text'>1x1</atom:content><atom:link
405
+ rel='self' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R1C1'/><atom:link
406
+ rel='edit' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R1C1/138q'/><gs:cell
407
+ row='1' col='1' inputValue='1x1'>1x1</gs:cell><batch:id>1,1</batch:id><batch:status
408
+ code='200' reason='Success'/><batch:operation type='update'/></atom:entry></atom:feed>
409
+ http_version:
410
+ recorded_at: Fri, 06 Dec 2013 18:42:33 GMT
411
+ - request:
412
+ method: get
413
+ uri: https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full?max-col=2&max-row=1&min-col=2&min-row=1&return-empty=true
414
+ body:
415
+ encoding: US-ASCII
416
+ string: ''
417
+ headers:
418
+ Authorization:
419
+ Authorization:
420
+ - GoogleLogin auth=DQAAAMwAAADMWltQuejlYd78Px9RfXhcHnb7tlPHfKPY4i69F9Hi0dhIQbyFRlHVcyMKaR3ajpn7yZLj-g3LYQk1SM-i9ejg3r4yH0rj9yZsBcy0ZiJV1L45w4jGXlgrvse68D5axixvDp7T7u6P6K-eOJj2SaKw8vBj156hBEyn4CQFJ0tVUjl5UPAN9Wt8hJmRNqULG3LoxYwLidLgPVjCtL-lF0YnUiSwbolVBzZAbyeYk1QSzX9xT5ms3sTQ4ESz42Bg9SQbc6kdlcWzvmQ_sO5GfrTY
421
+ Accept-Encoding:
422
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
423
+ Accept:
424
+ - '*/*'
425
+ User-Agent:
426
+ - Ruby
427
+ response:
428
+ status:
429
+ code: 200
430
+ message: OK
431
+ headers:
432
+ Content-Type:
433
+ - application/atom+xml; charset=UTF-8
434
+ Expires:
435
+ - Fri, 06 Dec 2013 18:42:36 GMT
436
+ Date:
437
+ - Fri, 06 Dec 2013 18:42:36 GMT
438
+ Cache-Control:
439
+ - private, max-age=0, must-revalidate, no-transform
440
+ Vary:
441
+ - Accept, X-GData-Authorization, GData-Version
442
+ Gdata-Version:
443
+ - '1.0'
444
+ Last-Modified:
445
+ - Fri, 06 Dec 2013 18:42:36 GMT
446
+ Set-Cookie:
447
+ - NID=67=hhR3BKtLhLtG5S2t0nQaY4JGPepDUM1oEg9hVFPsovK6AmMJUZT2qFNPlAPMQh3hNeekREIDFd8mJrRKbQObDz1j1cSgeaEXQfqG5kojHxLDhIi8vppQ4CSYiprjxa_p;Domain=.google.com;Path=/;Expires=Sat,
448
+ 07-Jun-2014 18:42:36 GMT;HttpOnly
449
+ P3p:
450
+ - CP="This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657
451
+ for more info."
452
+ X-Content-Type-Options:
453
+ - nosniff
454
+ X-Frame-Options:
455
+ - SAMEORIGIN
456
+ X-Xss-Protection:
457
+ - 1; mode=block
458
+ Server:
459
+ - GSE
460
+ Alternate-Protocol:
461
+ - 443:quic
462
+ Transfer-Encoding:
463
+ - chunked
464
+ body:
465
+ encoding: UTF-8
466
+ string: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom'
467
+ xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gs='http://schemas.google.com/spreadsheets/2006'
468
+ xmlns:batch='http://schemas.google.com/gdata/batch'><id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full</id><updated>2013-12-06T18:42:36.550Z</updated><category
469
+ scheme='http://schemas.google.com/spreadsheets/2006' term='http://schemas.google.com/spreadsheets/2006#cell'/><title
470
+ type='text'>Sheet1</title><link rel='alternate' type='text/html' href='https://spreadsheets.google.com/ccc?key=0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc'/><link
471
+ rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full'/><link
472
+ rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full'/><link
473
+ rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/batch'/><link
474
+ rel='self' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full?min-col=2&amp;max-col=2&amp;return-empty=true&amp;max-row=1&amp;min-row=1'/><author><name>paul.jungwirth</name><email>paul.jungwirth@gmail.com</email></author><openSearch:totalResults>1</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><gs:rowCount>100</gs:rowCount><gs:colCount>20</gs:colCount><entry><id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R1C2</id><updated>2013-12-06T18:42:36.550Z</updated><category
475
+ scheme='http://schemas.google.com/spreadsheets/2006' term='http://schemas.google.com/spreadsheets/2006#cell'/><title
476
+ type='text'>B1</title><content type='text'>1x2</content><link rel='self' type='application/atom+xml'
477
+ href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R1C2'/><link
478
+ rel='edit' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R1C2/a0omj'/><gs:cell
479
+ row='1' col='2' inputValue='1x2'>1x2</gs:cell></entry></feed>
480
+ http_version:
481
+ recorded_at: Fri, 06 Dec 2013 18:42:34 GMT
482
+ - request:
483
+ method: post
484
+ uri: https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/batch
485
+ body:
486
+ encoding: UTF-8
487
+ string: |2
488
+ <feed xmlns="http://www.w3.org/2005/Atom"
489
+ xmlns:batch="http://schemas.google.com/gdata/batch"
490
+ xmlns:gs="http://schemas.google.com/spreadsheets/2006">
491
+ <id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full</id>
492
+ <entry>
493
+ <batch:id>1,2</batch:id>
494
+ <batch:operation type="update"/>
495
+ <id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R1C2</id>
496
+ <link rel="edit" type="application/atom+xml"
497
+ href="https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R1C2/a0omj"/>
498
+ <gs:cell row="1" col="2" inputValue="1x2"/>
499
+ </entry>
500
+ </feed>
501
+ headers:
502
+ Authorization:
503
+ Authorization:
504
+ - GoogleLogin auth=DQAAAMwAAADMWltQuejlYd78Px9RfXhcHnb7tlPHfKPY4i69F9Hi0dhIQbyFRlHVcyMKaR3ajpn7yZLj-g3LYQk1SM-i9ejg3r4yH0rj9yZsBcy0ZiJV1L45w4jGXlgrvse68D5axixvDp7T7u6P6K-eOJj2SaKw8vBj156hBEyn4CQFJ0tVUjl5UPAN9Wt8hJmRNqULG3LoxYwLidLgPVjCtL-lF0YnUiSwbolVBzZAbyeYk1QSzX9xT5ms3sTQ4ESz42Bg9SQbc6kdlcWzvmQ_sO5GfrTY
505
+ Content-Type:
506
+ - application/atom+xml
507
+ Accept-Encoding:
508
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
509
+ Accept:
510
+ - '*/*'
511
+ User-Agent:
512
+ - Ruby
513
+ response:
514
+ status:
515
+ code: 200
516
+ message: OK
517
+ headers:
518
+ Content-Type:
519
+ - application/atom+xml; charset=UTF-8
520
+ Gdata-Version:
521
+ - '1.0'
522
+ Set-Cookie:
523
+ - NID=67=WJlvr-zjLEBTHM3AILcNGXJCtQU7Ws80r_fjKRTUlZu7Thu-BXXbTT-uPjMuwwlh4TB5RBo26S6SsFmR6roLsMqKYIECSGxbxul99InG1vOqjS4Ee7f3t46uZ-ypq-Ge;Domain=.google.com;Path=/;Expires=Sat,
524
+ 07-Jun-2014 18:42:37 GMT;HttpOnly
525
+ P3p:
526
+ - CP="This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657
527
+ for more info."
528
+ Date:
529
+ - Fri, 06 Dec 2013 18:42:37 GMT
530
+ Expires:
531
+ - Fri, 06 Dec 2013 18:42:37 GMT
532
+ Cache-Control:
533
+ - private, max-age=0
534
+ X-Content-Type-Options:
535
+ - nosniff
536
+ X-Frame-Options:
537
+ - SAMEORIGIN
538
+ X-Xss-Protection:
539
+ - 1; mode=block
540
+ Server:
541
+ - GSE
542
+ Alternate-Protocol:
543
+ - 443:quic
544
+ Transfer-Encoding:
545
+ - chunked
546
+ body:
547
+ encoding: UTF-8
548
+ string: <?xml version='1.0' encoding='UTF-8'?><atom:feed xmlns:atom='http://www.w3.org/2005/Atom'
549
+ xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gs='http://schemas.google.com/spreadsheets/2006'
550
+ xmlns:batch='http://schemas.google.com/gdata/batch'><atom:id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/batch/1386355357170</atom:id><atom:updated>2013-12-06T18:42:37.181Z</atom:updated><atom:title
551
+ type='text'>Batch Feed</atom:title><atom:entry><atom:id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R1C2</atom:id><atom:updated>2013-12-06T18:42:37.175Z</atom:updated><atom:category
552
+ scheme='http://schemas.google.com/spreadsheets/2006' term='http://schemas.google.com/spreadsheets/2006#cell'/><atom:title
553
+ type='text'>B1</atom:title><atom:content type='text'>1x2</atom:content><atom:link
554
+ rel='self' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R1C2'/><atom:link
555
+ rel='edit' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R1C2/a0omj'/><gs:cell
556
+ row='1' col='2' inputValue='1x2'>1x2</gs:cell><batch:id>1,2</batch:id><batch:status
557
+ code='200' reason='Success'/><batch:operation type='update'/></atom:entry></atom:feed>
558
+ http_version:
559
+ recorded_at: Fri, 06 Dec 2013 18:42:34 GMT
560
+ - request:
561
+ method: get
562
+ uri: https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full?max-col=1&max-row=2&min-col=1&min-row=2&return-empty=true
563
+ body:
564
+ encoding: US-ASCII
565
+ string: ''
566
+ headers:
567
+ Authorization:
568
+ Authorization:
569
+ - GoogleLogin auth=DQAAAMwAAADMWltQuejlYd78Px9RfXhcHnb7tlPHfKPY4i69F9Hi0dhIQbyFRlHVcyMKaR3ajpn7yZLj-g3LYQk1SM-i9ejg3r4yH0rj9yZsBcy0ZiJV1L45w4jGXlgrvse68D5axixvDp7T7u6P6K-eOJj2SaKw8vBj156hBEyn4CQFJ0tVUjl5UPAN9Wt8hJmRNqULG3LoxYwLidLgPVjCtL-lF0YnUiSwbolVBzZAbyeYk1QSzX9xT5ms3sTQ4ESz42Bg9SQbc6kdlcWzvmQ_sO5GfrTY
570
+ Accept-Encoding:
571
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
572
+ Accept:
573
+ - '*/*'
574
+ User-Agent:
575
+ - Ruby
576
+ response:
577
+ status:
578
+ code: 200
579
+ message: OK
580
+ headers:
581
+ Content-Type:
582
+ - application/atom+xml; charset=UTF-8
583
+ Expires:
584
+ - Fri, 06 Dec 2013 18:42:37 GMT
585
+ Date:
586
+ - Fri, 06 Dec 2013 18:42:37 GMT
587
+ Cache-Control:
588
+ - private, max-age=0, must-revalidate, no-transform
589
+ Vary:
590
+ - Accept, X-GData-Authorization, GData-Version
591
+ Gdata-Version:
592
+ - '1.0'
593
+ Last-Modified:
594
+ - Fri, 06 Dec 2013 18:42:37 GMT
595
+ Set-Cookie:
596
+ - NID=67=qlpkP4soWbj82eIRnnuyRBgS2Dhtnme752d7DANDieb5DLamkoMJ2l6DeLbIpgqK2Li1Qd-Ere-TGYfc0D9p2i-JnezagCE1Hc_YzPX9Ln2zsSVSjMLMP6f_sRowsHSJ;Domain=.google.com;Path=/;Expires=Sat,
597
+ 07-Jun-2014 18:42:37 GMT;HttpOnly
598
+ P3p:
599
+ - CP="This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657
600
+ for more info."
601
+ X-Content-Type-Options:
602
+ - nosniff
603
+ X-Frame-Options:
604
+ - SAMEORIGIN
605
+ X-Xss-Protection:
606
+ - 1; mode=block
607
+ Server:
608
+ - GSE
609
+ Alternate-Protocol:
610
+ - 443:quic
611
+ Transfer-Encoding:
612
+ - chunked
613
+ body:
614
+ encoding: UTF-8
615
+ string: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom'
616
+ xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gs='http://schemas.google.com/spreadsheets/2006'
617
+ xmlns:batch='http://schemas.google.com/gdata/batch'><id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full</id><updated>2013-12-06T18:42:37.175Z</updated><category
618
+ scheme='http://schemas.google.com/spreadsheets/2006' term='http://schemas.google.com/spreadsheets/2006#cell'/><title
619
+ type='text'>Sheet1</title><link rel='alternate' type='text/html' href='https://spreadsheets.google.com/ccc?key=0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc'/><link
620
+ rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full'/><link
621
+ rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full'/><link
622
+ rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/batch'/><link
623
+ rel='self' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full?min-col=1&amp;max-col=1&amp;return-empty=true&amp;max-row=2&amp;min-row=2'/><author><name>paul.jungwirth</name><email>paul.jungwirth@gmail.com</email></author><openSearch:totalResults>1</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><gs:rowCount>100</gs:rowCount><gs:colCount>20</gs:colCount><entry><id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R2C1</id><updated>2013-12-06T18:42:37.175Z</updated><category
624
+ scheme='http://schemas.google.com/spreadsheets/2006' term='http://schemas.google.com/spreadsheets/2006#cell'/><title
625
+ type='text'>A2</title><content type='text'>2x1</content><link rel='self' type='application/atom+xml'
626
+ href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R2C1'/><link
627
+ rel='edit' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R2C1/2ijv'/><gs:cell
628
+ row='2' col='1' inputValue='2x1'>2x1</gs:cell></entry></feed>
629
+ http_version:
630
+ recorded_at: Fri, 06 Dec 2013 18:42:34 GMT
631
+ - request:
632
+ method: post
633
+ uri: https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/batch
634
+ body:
635
+ encoding: UTF-8
636
+ string: |2
637
+ <feed xmlns="http://www.w3.org/2005/Atom"
638
+ xmlns:batch="http://schemas.google.com/gdata/batch"
639
+ xmlns:gs="http://schemas.google.com/spreadsheets/2006">
640
+ <id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full</id>
641
+ <entry>
642
+ <batch:id>2,1</batch:id>
643
+ <batch:operation type="update"/>
644
+ <id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R2C1</id>
645
+ <link rel="edit" type="application/atom+xml"
646
+ href="https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R2C1/2ijv"/>
647
+ <gs:cell row="2" col="1" inputValue="2x1"/>
648
+ </entry>
649
+ </feed>
650
+ headers:
651
+ Authorization:
652
+ Authorization:
653
+ - GoogleLogin auth=DQAAAMwAAADMWltQuejlYd78Px9RfXhcHnb7tlPHfKPY4i69F9Hi0dhIQbyFRlHVcyMKaR3ajpn7yZLj-g3LYQk1SM-i9ejg3r4yH0rj9yZsBcy0ZiJV1L45w4jGXlgrvse68D5axixvDp7T7u6P6K-eOJj2SaKw8vBj156hBEyn4CQFJ0tVUjl5UPAN9Wt8hJmRNqULG3LoxYwLidLgPVjCtL-lF0YnUiSwbolVBzZAbyeYk1QSzX9xT5ms3sTQ4ESz42Bg9SQbc6kdlcWzvmQ_sO5GfrTY
654
+ Content-Type:
655
+ - application/atom+xml
656
+ Accept-Encoding:
657
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
658
+ Accept:
659
+ - '*/*'
660
+ User-Agent:
661
+ - Ruby
662
+ response:
663
+ status:
664
+ code: 200
665
+ message: OK
666
+ headers:
667
+ Content-Type:
668
+ - application/atom+xml; charset=UTF-8
669
+ Gdata-Version:
670
+ - '1.0'
671
+ Set-Cookie:
672
+ - NID=67=glsIXLsUxvEjIZeV_caboBdJfweLOgsi15nO8M-4es2Wu32kx35phIfTTDp9ujhK_HyC8n1AeREHBwh3IH1Nmq4MovOypQI3q1XdTPWvPC7Q-3WfiUFQ-YljhIrbI8KE;Domain=.google.com;Path=/;Expires=Sat,
673
+ 07-Jun-2014 18:42:38 GMT;HttpOnly
674
+ P3p:
675
+ - CP="This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657
676
+ for more info."
677
+ Date:
678
+ - Fri, 06 Dec 2013 18:42:38 GMT
679
+ Expires:
680
+ - Fri, 06 Dec 2013 18:42:38 GMT
681
+ Cache-Control:
682
+ - private, max-age=0
683
+ X-Content-Type-Options:
684
+ - nosniff
685
+ X-Frame-Options:
686
+ - SAMEORIGIN
687
+ X-Xss-Protection:
688
+ - 1; mode=block
689
+ Server:
690
+ - GSE
691
+ Alternate-Protocol:
692
+ - 443:quic
693
+ Transfer-Encoding:
694
+ - chunked
695
+ body:
696
+ encoding: UTF-8
697
+ string: <?xml version='1.0' encoding='UTF-8'?><atom:feed xmlns:atom='http://www.w3.org/2005/Atom'
698
+ xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gs='http://schemas.google.com/spreadsheets/2006'
699
+ xmlns:batch='http://schemas.google.com/gdata/batch'><atom:id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/batch/1386355358339</atom:id><atom:updated>2013-12-06T18:42:38.351Z</atom:updated><atom:title
700
+ type='text'>Batch Feed</atom:title><atom:entry><atom:id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R2C1</atom:id><atom:updated>2013-12-06T18:42:38.344Z</atom:updated><atom:category
701
+ scheme='http://schemas.google.com/spreadsheets/2006' term='http://schemas.google.com/spreadsheets/2006#cell'/><atom:title
702
+ type='text'>A2</atom:title><atom:content type='text'>2x1</atom:content><atom:link
703
+ rel='self' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R2C1'/><atom:link
704
+ rel='edit' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R2C1/2ijv'/><gs:cell
705
+ row='2' col='1' inputValue='2x1'>2x1</gs:cell><batch:id>2,1</batch:id><batch:status
706
+ code='200' reason='Success'/><batch:operation type='update'/></atom:entry></atom:feed>
707
+ http_version:
708
+ recorded_at: Fri, 06 Dec 2013 18:42:35 GMT
709
+ - request:
710
+ method: get
711
+ uri: https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full?max-col=2&max-row=2&min-col=2&min-row=2&return-empty=true
712
+ body:
713
+ encoding: US-ASCII
714
+ string: ''
715
+ headers:
716
+ Authorization:
717
+ Authorization:
718
+ - GoogleLogin auth=DQAAAMwAAADMWltQuejlYd78Px9RfXhcHnb7tlPHfKPY4i69F9Hi0dhIQbyFRlHVcyMKaR3ajpn7yZLj-g3LYQk1SM-i9ejg3r4yH0rj9yZsBcy0ZiJV1L45w4jGXlgrvse68D5axixvDp7T7u6P6K-eOJj2SaKw8vBj156hBEyn4CQFJ0tVUjl5UPAN9Wt8hJmRNqULG3LoxYwLidLgPVjCtL-lF0YnUiSwbolVBzZAbyeYk1QSzX9xT5ms3sTQ4ESz42Bg9SQbc6kdlcWzvmQ_sO5GfrTY
719
+ Accept-Encoding:
720
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
721
+ Accept:
722
+ - '*/*'
723
+ User-Agent:
724
+ - Ruby
725
+ response:
726
+ status:
727
+ code: 200
728
+ message: OK
729
+ headers:
730
+ Content-Type:
731
+ - application/atom+xml; charset=UTF-8
732
+ Expires:
733
+ - Fri, 06 Dec 2013 18:42:40 GMT
734
+ Date:
735
+ - Fri, 06 Dec 2013 18:42:40 GMT
736
+ Cache-Control:
737
+ - private, max-age=0, must-revalidate, no-transform
738
+ Vary:
739
+ - Accept, X-GData-Authorization, GData-Version
740
+ Gdata-Version:
741
+ - '1.0'
742
+ Last-Modified:
743
+ - Fri, 06 Dec 2013 18:42:38 GMT
744
+ Set-Cookie:
745
+ - NID=67=cQbD3pRJf1bzd_ftYzzrk1sCcdgkDT-b4GGscg8WBm-bIuyOYxIZL86VrMvC0wDSAjQeKiaH65AVd2Q_Ve5YxvWinnnZdg30pktLVmFxwHFkJ-pVnk0xtjyoM_QHg219;Domain=.google.com;Path=/;Expires=Sat,
746
+ 07-Jun-2014 18:42:40 GMT;HttpOnly
747
+ P3p:
748
+ - CP="This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657
749
+ for more info."
750
+ X-Content-Type-Options:
751
+ - nosniff
752
+ X-Frame-Options:
753
+ - SAMEORIGIN
754
+ X-Xss-Protection:
755
+ - 1; mode=block
756
+ Server:
757
+ - GSE
758
+ Alternate-Protocol:
759
+ - 443:quic
760
+ Transfer-Encoding:
761
+ - chunked
762
+ body:
763
+ encoding: UTF-8
764
+ string: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom'
765
+ xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gs='http://schemas.google.com/spreadsheets/2006'
766
+ xmlns:batch='http://schemas.google.com/gdata/batch'><id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full</id><updated>2013-12-06T18:42:38.344Z</updated><category
767
+ scheme='http://schemas.google.com/spreadsheets/2006' term='http://schemas.google.com/spreadsheets/2006#cell'/><title
768
+ type='text'>Sheet1</title><link rel='alternate' type='text/html' href='https://spreadsheets.google.com/ccc?key=0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc'/><link
769
+ rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full'/><link
770
+ rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full'/><link
771
+ rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/batch'/><link
772
+ rel='self' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full?min-col=2&amp;max-col=2&amp;return-empty=true&amp;max-row=2&amp;min-row=2'/><author><name>paul.jungwirth</name><email>paul.jungwirth@gmail.com</email></author><openSearch:totalResults>1</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><gs:rowCount>100</gs:rowCount><gs:colCount>20</gs:colCount><entry><id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R2C2</id><updated>2013-12-06T18:42:38.344Z</updated><category
773
+ scheme='http://schemas.google.com/spreadsheets/2006' term='http://schemas.google.com/spreadsheets/2006#cell'/><title
774
+ type='text'>B2</title><content type='text'>2x2</content><link rel='self' type='application/atom+xml'
775
+ href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R2C2'/><link
776
+ rel='edit' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R2C2/a23xo'/><gs:cell
777
+ row='2' col='2' inputValue='2x2'>2x2</gs:cell></entry></feed>
778
+ http_version:
779
+ recorded_at: Fri, 06 Dec 2013 18:42:37 GMT
780
+ - request:
781
+ method: post
782
+ uri: https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/batch
783
+ body:
784
+ encoding: UTF-8
785
+ string: |2
786
+ <feed xmlns="http://www.w3.org/2005/Atom"
787
+ xmlns:batch="http://schemas.google.com/gdata/batch"
788
+ xmlns:gs="http://schemas.google.com/spreadsheets/2006">
789
+ <id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full</id>
790
+ <entry>
791
+ <batch:id>2,2</batch:id>
792
+ <batch:operation type="update"/>
793
+ <id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R2C2</id>
794
+ <link rel="edit" type="application/atom+xml"
795
+ href="https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R2C2/a23xo"/>
796
+ <gs:cell row="2" col="2" inputValue="2x2"/>
797
+ </entry>
798
+ </feed>
799
+ headers:
800
+ Authorization:
801
+ - GoogleLogin auth=DQAAAMwAAADMWltQuejlYd78Px9RfXhcHnb7tlPHfKPY4i69F9Hi0dhIQbyFRlHVcyMKaR3ajpn7yZLj-g3LYQk1SM-i9ejg3r4yH0rj9yZsBcy0ZiJV1L45w4jGXlgrvse68D5axixvDp7T7u6P6K-eOJj2SaKw8vBj156hBEyn4CQFJ0tVUjl5UPAN9Wt8hJmRNqULG3LoxYwLidLgPVjCtL-lF0YnUiSwbolVBzZAbyeYk1QSzX9xT5ms3sTQ4ESz42Bg9SQbc6kdlcWzvmQ_sO5GfrTY
802
+ Content-Type:
803
+ - application/atom+xml
804
+ Accept-Encoding:
805
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
806
+ Accept:
807
+ - '*/*'
808
+ User-Agent:
809
+ - Ruby
810
+ response:
811
+ status:
812
+ code: 200
813
+ message: OK
814
+ headers:
815
+ Content-Type:
816
+ - application/atom+xml; charset=UTF-8
817
+ Gdata-Version:
818
+ - '1.0'
819
+ Set-Cookie:
820
+ - NID=67=O0n3ybyFFr3VP3s97FT61XHlZhk4M01SSuzeiYHZIy0xktykBbJeWQwthVsIRXZsU41IoB59PhzsYpjGc88JTzvOKlSeNHNahUXdz-Q3XUG26k7j3OJJTJMfCPt-hn1d;Domain=.google.com;Path=/;Expires=Sat,
821
+ 07-Jun-2014 18:42:42 GMT;HttpOnly
822
+ P3p:
823
+ - CP="This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657
824
+ for more info."
825
+ Date:
826
+ - Fri, 06 Dec 2013 18:42:42 GMT
827
+ Expires:
828
+ - Fri, 06 Dec 2013 18:42:42 GMT
829
+ Cache-Control:
830
+ - private, max-age=0
831
+ X-Content-Type-Options:
832
+ - nosniff
833
+ X-Frame-Options:
834
+ - SAMEORIGIN
835
+ X-Xss-Protection:
836
+ - 1; mode=block
837
+ Server:
838
+ - GSE
839
+ Alternate-Protocol:
840
+ - 443:quic
841
+ Transfer-Encoding:
842
+ - chunked
843
+ body:
844
+ encoding: UTF-8
845
+ string: <?xml version='1.0' encoding='UTF-8'?><atom:feed xmlns:atom='http://www.w3.org/2005/Atom'
846
+ xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gs='http://schemas.google.com/spreadsheets/2006'
847
+ xmlns:batch='http://schemas.google.com/gdata/batch'><atom:id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/batch/1386355362467</atom:id><atom:updated>2013-12-06T18:42:42.478Z</atom:updated><atom:title
848
+ type='text'>Batch Feed</atom:title><atom:entry><atom:id>https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R2C2</atom:id><atom:updated>2013-12-06T18:42:42.472Z</atom:updated><atom:category
849
+ scheme='http://schemas.google.com/spreadsheets/2006' term='http://schemas.google.com/spreadsheets/2006#cell'/><atom:title
850
+ type='text'>B2</atom:title><atom:content type='text'>2x2</atom:content><atom:link
851
+ rel='self' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R2C2'/><atom:link
852
+ rel='edit' type='application/atom+xml' href='https://spreadsheets.google.com/feeds/cells/0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc/od6/private/full/R2C2/a23xo'/><gs:cell
853
+ row='2' col='2' inputValue='2x2'>2x2</gs:cell><batch:id>2,2</batch:id><batch:status
854
+ code='200' reason='Success'/><batch:operation type='update'/></atom:entry></atom:feed>
855
+ http_version:
856
+ recorded_at: Fri, 06 Dec 2013 18:42:39 GMT
857
+ recorded_with: VCR 2.5.0
@@ -9,5 +9,15 @@ describe Roo::Excelx do
9
9
  it 'creates an instance' do
10
10
  expect(subject).to be_a(Roo::Excelx)
11
11
  end
12
+
13
+ context 'given a file with missing rels' do
14
+ subject {
15
+ Roo::Excelx.new('test/files/file_item_error.xlsx')
16
+ }
17
+
18
+ it 'creates an instance' do
19
+ expect(subject).to be_a(Roo::Excelx)
20
+ end
21
+ end
12
22
  end
13
23
  end
@@ -33,4 +33,32 @@ describe Roo::Google do
33
33
  end
34
34
  end
35
35
  end
36
+
37
+ describe '.set' do
38
+ let(:key) { '0AiVSev9-0p-PdEVrQldEY1I4dDJjVlpEQUkwblprcnc' }
39
+ let(:user) { 'user' }
40
+ let(:password) { "password" }
41
+
42
+ subject {
43
+ Roo::Google.new(key, user: user, password: password)
44
+ }
45
+
46
+ it 'records the value' do
47
+ VCR.use_cassette('google_drive_set') do
48
+ subject.cell(1, 1).should == '1x1'
49
+ subject.cell(1, 2).should == '1x2'
50
+ subject.cell(2, 1).should == '2x1'
51
+ subject.cell(2, 2).should == '2x2'
52
+ subject.set(1, 1, '1x1')
53
+ subject.set(1, 2, '1x2')
54
+ subject.set(2, 1, '2x1')
55
+ subject.set(2, 2, '2x2')
56
+ subject.cell(1, 1).should == '1x1'
57
+ subject.cell(1, 2).should == '1x2'
58
+ subject.cell(2, 1).should == '2x1'
59
+ subject.cell(2, 2).should == '2x2'
60
+ end
61
+ end
62
+ end
63
+
36
64
  end
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: roo
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.0
4
+ version: 1.13.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Preymesser
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2013-12-05 00:00:00.000000000 Z
13
+ date: 2013-12-23 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: spreadsheet
@@ -122,6 +122,7 @@ files:
122
122
  - scripts/txt2html
123
123
  - spec/fixtures/vcr_cassettes/google_drive.yml
124
124
  - spec/fixtures/vcr_cassettes/google_drive_access_token.yml
125
+ - spec/fixtures/vcr_cassettes/google_drive_set.yml
125
126
  - spec/lib/roo/base_spec.rb
126
127
  - spec/lib/roo/csv_spec.rb
127
128
  - spec/lib/roo/excel2003xml_spec.rb
@@ -182,6 +183,7 @@ files:
182
183
  - test/files/excel2003.xml
183
184
  - test/files/false_encoding.xls
184
185
  - test/files/false_encoding.xml
186
+ - test/files/file_item_error.xlsx
185
187
  - test/files/formula.ods
186
188
  - test/files/formula.xls
187
189
  - test/files/formula.xlsx
@@ -277,6 +279,7 @@ summary: Roo can access the contents of various spreadsheet files.
277
279
  test_files:
278
280
  - spec/fixtures/vcr_cassettes/google_drive.yml
279
281
  - spec/fixtures/vcr_cassettes/google_drive_access_token.yml
282
+ - spec/fixtures/vcr_cassettes/google_drive_set.yml
280
283
  - spec/lib/roo/base_spec.rb
281
284
  - spec/lib/roo/csv_spec.rb
282
285
  - spec/lib/roo/excel2003xml_spec.rb
@@ -337,6 +340,7 @@ test_files:
337
340
  - test/files/excel2003.xml
338
341
  - test/files/false_encoding.xls
339
342
  - test/files/false_encoding.xml
343
+ - test/files/file_item_error.xlsx
340
344
  - test/files/formula.ods
341
345
  - test/files/formula.xls
342
346
  - test/files/formula.xlsx