[wtr-general] Re: How to change a ruby file into an .exe file

2009-02-20 Thread Wilson Xu
refer to http://rubyforge.org/projects/exerb/ project. Wilson On Fri, Feb 20, 2009 at 4:34 PM, Jerry wrote: > > Hi, > I have one main program and some sub_programs.. > Is their any way to convert these Ruby programs into a single .exe > file? > Thanx, > Malar > > > --~--~-~--~~---

[wtr-general] Re: How to change a ruby file into an .exe file

2009-02-20 Thread Wilson Xu
Download from exerb offical site "http://exerb.sourceforge.jp/index.en.html"; Wilson On Fri, Feb 20, 2009 at 4:38 PM, Wilson Xu wrote: > refer to http://rubyforge.org/projects/exerb/ project. > > Wilson > > > > On Fri, Feb 20, 2009 at 4:34 PM, Jerry wrote: > >> >> Hi, >> I have one main program

[wtr-general] Re: How to change a ruby file into an .exe file

2009-02-27 Thread Jarmo Pertman
Or use rubyscript2exe, which also supports Linux and OSX. You can read more about it from here http://www.erikveen.dds.nl/rubyscript2exe/ On Feb 20, 10:38 am, Wilson Xu wrote: > refer tohttp://rubyforge.org/projects/exerb/project. > > Wilson --~--~-~--~~~---~--~~

[wtr-general] Re: How to change a ruby file into an .exe file

2009-03-18 Thread wesley chen
Two steps to make the .rb file to .exe file. 1. go to your command line, run gem install rubyscript2exe 2. Go to your main.rb file directory, run rubyscript2exe main.rb It will make the main.rb into main.exe Thanks. Wesley Chen. On Sat, Feb 28, 2009 at 12:50 AM, Jarmo Pertman wrote: > > Or u

[wtr-general] Re: How to change a ruby file into an .exe file

2009-03-18 Thread wesley chen
A problem exists: I create two .rb file in the same directory first is test1.rb, with code: require 'watir' $ie=Watir::IE.new second is test2.rb, with code: *require File.join(Dir.pwd, 'test1.rb')* $ie.goto("www.baidu.com") puts "OK" $ie.text_field(:id,'kw').set("www.baidu.com") $ie.button(:id,'s

[wtr-general] Re: How to change a ruby file into an .exe file

2009-03-18 Thread Rick Carter
I have tried to use rubyscript2exe but it seems cannot run in my computer. Maybe it is a version problem. On Wed, Mar 18, 2009 at 8:57 AM, wesley chen wrote: > A problem exists: > I create two .rb file in the same directory > first is test1.rb, with code: > require 'watir' > $ie=Watir::IE.new >

[wtr-general] Re: How to change a ruby file into an .exe file

2009-03-18 Thread George
Just downloaded the gem and it seemed to work for me On Mar 18, 8:56 am, Rick Carter wrote: > I have tried to use rubyscript2exe but it seems cannot run in my computer. > Maybe it is a version problem. > > On Wed, Mar 18, 2009 at 8:57 AM, wesley chen wrote: > > A problem exists: > > I creat

[wtr-general] Re: How to change a ruby file into an .exe file

2009-03-19 Thread Jarmo Pertman
I remember that you had to use rubyscript2exe variables instead of File.dirname. Please refer to here to find out which one works for you: http://www.erikveen.dds.nl/rubyscript2exe/#3.3.0 On Mar 18, 2:57 pm, wesley chen wrote: > A problem exists: > I create two .rb file in the same directory > f

[wtr-general] Re: How to change a ruby file into an .exe file

2009-03-19 Thread wesley chen
Hi, Pertman, You have not watched my post carefully, my File.dirname(__FILE__) is in my script, it is not a parameter to run rubyscript2exe. But thank you all the same. Thanks. Wesley Chen. On Thu, Mar 19, 2009 at 8:06 PM, Jarmo Pertman wrote: > > I remember that you had to use rubyscript2exe

[wtr-general] Re: How to change a ruby file into an .exe file

2009-04-01 Thread Jarmo Pertman
Yes, I've noticed, but I had in mind that you have to use other technique when using Rubyscript2exe. Instead of writing "require 'File.dirname(__FILE__) + '/something'" use: require 'rubyscript2exe' require RUBYSCRIPT2EXE.exedir + '/something' OR this should also work: require 'rubyscript2exe' r

[wtr-general] Re: How to change a ruby file into an .exe file

2009-04-01 Thread Wesley Chen
Hi, Jarmo, Thank you very much, it is really useful. Thanks. Wesley Chen. On Wed, Apr 1, 2009 at 3:34 PM, Jarmo Pertman wrote: > require 'rubyscript2exe' > require RUBYSCRIPT2EXE.exedir + '/something' > --~--~-~--~~~---~--~~ You received this message because yo

[wtr-general] Re: How to change a ruby file into an .exe file

2009-04-03 Thread neeraj girdhar
Hi, what is this '/something' in your code. Regards, Neeraj On Thu, Apr 2, 2009 at 6:46 AM, Wesley Chen wrote: > Hi, Jarmo, > Thank you very much, it is really useful. > > Thanks. > Wesley Chen. > > > On Wed, Apr 1, 2009 at 3:34 PM, Jarmo Pertman wrote: > >> require 'rubyscript2exe' >> req

[wtr-general] Re: How to change a ruby file into an .exe file

2009-04-11 Thread Jarmo Pertman
It's your Ruby script whichever you wanted to load :) On Apr 3, 4:40 pm, neeraj girdhar wrote: > Hi, > > what is this '/something' in your code. > > Regards, > > Neeraj --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups