README.rdoc in write_xlsx-0.59.0 vs README.rdoc in write_xlsx-0.60.0
- old
+ new
@@ -30,19 +30,19 @@
== Installation
Add this line to your application's Gemfile:
- gem 'writeexcel'
+ gem 'write_xlsx'
And then execute:
$ bundle
Or install it yourself as:
- $ gem install writeexcel
+ $ gem install write_xlsx
== Synopsis
To write a string, a formatted string, a number and a formula to
the first worksheet in an Excel XML spreadsheet called ruby.xlsx:
@@ -72,9 +72,18 @@
worksheet.write('A4', '=SIN(PI()/4)')
workbook.close
== Recent change
+2013-02-19 v0.60.0
+ Added Excel form buttons via the worksheet insert_button() method.
+ This allows the user to tie the button to an embedded macro imported
+ using add_vba_project().
+ The portal to the dungeon dimensions is now fully open.
+
+ bug fix in Worksheet#write_url
+ bug fix in bin/vba_extract.rb
+
2013-02-17 v0.59.0
Added macro support via VBA projects extracted from existing Excel
xlsm files. User defined functions can be called from worksheets
and macros can be called by the user but they cannot, currently,
be linked to form elements such as buttons.