[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 er.neeraj...@gmail.com wrote: Hi, what is this '/something' in your code. Regards, Neeraj --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[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 cjq@gmail.com 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 jarm...@gmail.com wrote: require

[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'

[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 jarm...@gmail.com wrote: require 'rubyscript2exe' require RUBYSCRIPT2EXE.exedir + '/something' --~--~-~--~~~---~--~~ You received this

[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 cjq@gmail.com wrote: A problem exists: I create two .rb file in the

[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

[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)

[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 cjq@gmail.com wrote: A problem exists: I create two .rb file in the same directory first is test1.rb, with code: require 'watir'

[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 windchillfigh...@gmail.com 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 cjq@gmail.com

[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 malar.je...@gmail.com 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