Integration using ruby

Hi,

I need to find out how I could use Ruby to integrate existing
applications so that I could for example .. automate certain procedures.

I am relatively new to the language. As a part of exploring new
technologies my group at college is looking at Ruby. I have never used a
scripting language before. We are using Programming Ruby as our
reference, but I thought of doing something not in the book. I am also
now learning COM and I know that it isn't the simplest way to get things
done.

I have looked around for material on this topic, however I failed to
find, so far, anything that I could understand wihtout really knowing
the language well.

···

--
Posted via http://www.ruby-forum.com/.

automate certain procedures=?

in windows you have to use win32 ole:
http://phrogz.net/ProgrammingRuby/win32.html

Some specialized stuff:

for web automations (client-side):http://wtr.rubyforge.org/
web automation server-side: selenium

win interface automation: autoit
http://www.rubygarden.org/ruby?AutoIt_For_Windows

....

There is beta of Enterprise Integration with Ruby in PDF for you at
http://www.pragmaticprogrammer.com/titles/fr_eir/.

jan

If it is integration and automation of desktop applications you should look
at win32ole. For browser automation in windows see Watir.

For more server-side integration
http://www.pragmaticprogrammer.com/titles/fr_eir/

Hth.

"jeetendra kukreja" <jeetendrakukreja@hotmail.com> wrote in message
news:90a808160f1457888217d452c2f4c60c@ruby-forum.com...

···

Hi,

I need to find out how I could use Ruby to integrate existing
applications so that I could for example .. automate certain procedures.

I am relatively new to the language. As a part of exploring new
technologies my group at college is looking at Ruby. I have never used a
scripting language before. We are using Programming Ruby as our
reference, but I thought of doing something not in the book. I am also
now learning COM and I know that it isn't the simplest way to get things
done.

I have looked around for material on this topic, however I failed to
find, so far, anything that I could understand wihtout really knowing
the language well.

--
Posted via http://www.ruby-forum.com/\.

You can also try SWExplorerAutomation (SWEA)
(http://www.webunittesting.com). You can very easily create API
(Service) for a Web application with SWEA. The SWEA API can be invoked
from a windows service or ASP.NET.