README.rdoc in writeexcel-0.6.19 vs README.rdoc in writeexcel-1.0.0

- old
+ new

@@ -3,15 +3,12 @@ Write to a cross-platform Excel binary file. == Description This library is converted from Spreadsheet::WriteExcel module of Perl. -http://search.cpan.org/~jmcnamara/Spreadsheet-WriteExcel-2.37/ +http://search.cpan.org/~jmcnamara/Spreadsheet-WriteExcel-2.38/ -Some examples written in perl was successfully converted to Ruby. But -this library written in Ruby has many bugs, I think. - Original description is below: The Spreadsheet::WriteExcel module can be used to create a cross- platform Excel binary file. Multiple worksheets can be added to a workbook and formatting can be applied to cells. Text, numbers, @@ -40,12 +37,12 @@ $ gem install writeexcel == Usage -See rdoc's WriteExcel class document or Reference http://writeexcel.web.fc2.com/ . -You must save source file in UTF8 and run ruby with -Ku option or set $KCODE='u'. +See Reference http://writeexcel.web.fc2.com/ . +You must save source file in UTF8, and run ruby with -Ku option or set $KCODE='u' in Ruby 1.8. Example Code: require 'writeexcel' @@ -82,15 +79,13 @@ * if token.kind_of?(Numeric) then call write_number, if token.kind_of?(String) then not call write_number(). * Worksheet.keep_leading_zeros() * ignore. if write 0001, use string such as write(1,2, '0001') * and ...... -== Caution - -You must save source file in UTF8 and run ruby with -Ku option or set $KCODE='u' -when use urf8 string data. - -== Recent Changes +== Recent Change +v1.0.0 +* Bug fix in Workbook#set_properties. +s v0.6.19 * Bug fix in Worksheet#write_url_internal v0.6.18 * Bug fix in compatibility_mode (Worksheet#write_number).