summaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorJonathan Tron <[email protected]>2012-02-22 19:04:40 +0100
committerJonathan Tron <[email protected]>2012-02-22 19:04:40 +0100
commitaf7309d057f184d4ba075e5b3108ca95c08de48e (patch)
tree4f8e21b6a0bbf2bf44348e7d4e43a843dd32e466 /examples
parent7d288efdc175dd9db030ada073aab360ea1b6b95 (diff)
downloadcaxlsx-af7309d057f184d4ba075e5b3108ca95c08de48e.tar.gz
caxlsx-af7309d057f184d4ba075e5b3108ca95c08de48e.zip
Remove debugging in example.rb
Diffstat (limited to 'examples')
-rw-r--r--examples/example.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/examples/example.rb b/examples/example.rb
index 2d60a474..3487044a 100644
--- a/examples/example.rb
+++ b/examples/example.rb
@@ -116,10 +116,8 @@
##Automatic cell types
wb.add_worksheet(:name => "Automatic cell types") do |sheet|
- t = Time.now
sheet.add_row ["Date", "Time", "String", "Boolean", "Float", "Integer"]
- sheet.add_row [Date.today, t, "value", true, 0.1, 1]
- sheet.add_row ["", t.to_f, "", "", "", ""]
+ sheet.add_row [Date.today, Time.now, "value", true, 0.1, 1]
end
##Merging Cells.