[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

How to create a windows startup app

Sal Syed

9/29/2007 4:50:00 AM

I want my RUby app to automatically be called when windows boots up ...
what is the best way to do this? I am probably going to compile it to an
exe... I would also like to know how to do this for Mac
--
Posted via http://www.ruby-....

3 Answers

James Britt

9/29/2007 2:33:00 PM

0

Sal Syed wrote:
> I want my RUby app to automatically be called when windows boots up ...
> what is the best way to do this?

Add a link to the program in the Start Up program group

or

add it to the registry (I forget the exact key, something along the
lines of localmachine/software/microsoft/windows/current_version/run).

In either case you'll need to be sure the calling script will correctly
load the Ruby interpreter. If your app is not getting called correctly
at boot time, try wrapping it in a .bat file:

e.g.

REM myapp.bat
c:\ruby\bin\ruby.exe c:\path\to\your_app.rb




I am probably going to compile it to an
> exe... I would also like to know how to do this for Mac

Ruby code does not get compiled to exe. There are some apps that will
wrap Ruby code into self-extracting, self-executing files; see
rubyscript2exe, for example

--
James Britt

"Those who would give up Essential Liberty to purchase a little
Temporary Safety, deserve neither Liberty nor Safety."
- Benjamin Franklin, when asked about static typing
(and a tip of the hat to raganwald)

I. P.

9/29/2007 7:28:00 PM

0

|James Britt|

JB> at boot time, try wrapping it in a .bat file:
JB> REM myapp.bat
JB> c:\ruby\bin\ruby.exe c:\path\to\your_app.rb
And in this case you'd probably need Hstart utility
(http://www.ntwind.com/software/utilities/h...)
which hides flickering console window.

--
I. P. 2007-09-29T23:25


James Britt

9/29/2007 11:08:00 PM

0

I. P. wrote:
> |James Britt|
>
> JB> at boot time, try wrapping it in a .bat file:
> JB> REM myapp.bat
> JB> c:\ruby\bin\ruby.exe c:\path\to\your_app.rb
> And in this case you'd probably need Hstart utility
> (http://www.ntwind.com/software/utilities/h...)
> which hides flickering console window.
>


If one is using Curt Hibb's "one-click" installer version of Ruby, you
can use the .rbw extension on the script and Ruby should execute with no
visible cmd shell window.


The times I've had Ruby code execute at Windows launch I did not often
use persistent processes; seeing the DOS box come up was a nice
indicator that the code was actually running, and then seeing that it
was not hanging.



--
James Britt

www.ruby-doc.org - Ruby Help & Documentation
www.risingtidesoftware.com - Wicked Cool Coding
www.rubystuff.com - The Ruby Store for Ruby Stuff
www.jamesbritt.com - Playing with Better Toys