writeexcel 0.6.15 → 0.6.16
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +3 -0
- data/VERSION +1 -1
- data/lib/writeexcel/worksheet.rb +2 -1
- data/writeexcel.gemspec +1 -1
- metadata +1 -1
data/README.rdoc
CHANGED
@@ -76,6 +76,9 @@ You must save source file in UTF8 and run ruby with -Ku option or set $KCODE='u'
|
|
76
76
|
when use urf8 string data.
|
77
77
|
|
78
78
|
== Recent Changes
|
79
|
+
v0.6.16
|
80
|
+
* typo fix
|
81
|
+
|
79
82
|
v0.6.15
|
80
83
|
* add Worksheet#merge_range_with_date_time : write datetime string to merged cells
|
81
84
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.6.
|
1
|
+
0.6.16
|
data/lib/writeexcel/worksheet.rb
CHANGED
@@ -988,8 +988,9 @@ class Worksheet < BIFFWriter
|
|
988
988
|
colLast = args[3]
|
989
989
|
string = args[4]
|
990
990
|
format = args[5]
|
991
|
+
encoding = nil
|
991
992
|
|
992
|
-
merge_range_core(rwFirst, colFirst, rwLast, colLast, string, format, encoding) do |rwFirst, colFirst, string, format,
|
993
|
+
merge_range_core(rwFirst, colFirst, rwLast, colLast, string, format, encoding) do |rwFirst, colFirst, string, format, encoding|
|
993
994
|
write_date_time(rwFirst, colFirst, string, format)
|
994
995
|
end
|
995
996
|
end
|
data/writeexcel.gemspec
CHANGED