[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Ruby plugin for spreadsheet?

Grant Schoep

2/24/2006 1:10:00 AM

I know this may sound insane... but is there anything like a ruby plugin
for spreadsheets? Sadly, I guess I'd prefer Excel, but I use OpenOffice
alot too. basically, there is always text manipulation of fields I need to
do. Its a royal pain in most spreadsheet software. I usually end up
exporting my data out to a csv, running some Ruby scripts on it, and then
importing it back. Trying to reduce the work here. Since... exporting it
out, running ruby scripts on it, then importing it back in is still easier
for me.
2 Answers

rcoder@gmail.com

2/24/2006 1:44:00 AM

0

I actually did a project a couple of years ago which used the Win32 OLE
library for Ruby -- check out the ActiveScriptRuby distribution
(http://arton.hp.infos...).

Instead of doing a Ruby "plugin" for Excel, I used Ruby to automate
Excel operations: open a workbook, select a worksheet, create a new
sheet, copy some data into it, etc.

-Lennon

James Herdman

2/24/2006 6:08:00 AM

0

On 2006-02-23 20:10:06 -0500, Grant Schoep
<matobinder@idcomm.abcremooveabc.com> said:

> I know this may sound insane... but is there anything like a ruby
> plugin for spreadsheets? Sadly, I guess I'd prefer Excel, but I use
> OpenOffice alot too. basically, there is always text manipulation of
> fields I need to do. Its a royal pain in most spreadsheet software. I
> usually end up exporting my data out to a csv, running some Ruby
> scripts on it, and then importing it back. Trying to reduce the work
> here. Since... exporting it out, running ruby scripts on it, then
> importing it back in is still easier for me.

Check this thread out >>
http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/15326c311fafc888/8ae49e950ee8c49d?q=Excel+spreadsheet&rnum=2#8ae49e...

It

might be of use.

James