how to make .exe file?

K

Koo Coolwong

I using RUBYSCRIPT2EXE to built an .exe file for my project. After i
install RUBYSCRIPT2EXE gem, but i do not know how to built an .exe file.
Any one can teach me with sample code???
 
D

David Mullet

Cool said:
I using RUBYSCRIPT2EXE to built an .exe file for my project. After i
install RUBYSCRIPT2EXE gem, but i do not know how to built an .exe file.
Any one can teach me with sample code???

Quick example, on Windows:

Include the following in your script:

require "rubyscript2exe"
exit if RUBYSCRIPT2EXE.is_compiling?

If this is a console app, save your script with a ".rb" extension. If it
is a non-console app, save your script with a ".rbw" extension (ie,
"my_app.rbw").

Open a console/command window and enter:

rubyscript2exe my_app.rbw

Further details here:

http://www.erikveen.dds.nl/rubyscript2exe/index.html#3.1.0

David

http://rubyonwindows.blogspot.com
 
C

Cool Wong

David said:
Quick example, on Windows:

Include the following in your script:

require "rubyscript2exe"
exit if RUBYSCRIPT2EXE.is_compiling?

If this is a console app, save your script with a ".rb" extension. If it
is a non-console app, save your script with a ".rbw" extension (ie,
"my_app.rbw").

Open a console/command window and enter:

rubyscript2exe my_app.rbw

Further details here:

http://www.erikveen.dds.nl/rubyscript2exe/index.html#3.1.0

David

http://rubyonwindows.blogspot.com

when i write the "require 'rubyscript2exe'", it will be true. but after
i continue the rubyscript2exe, it cannot run and occur error.

Code:
"require 'rubyscript2exe'

RUBYSCRIPT2EXE testing.rb"

it shown :"undefined local variable or method `testing' for main:Object
(NameError)"

where i need to correct???
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,584
Members
45,075
Latest member
MakersCBDBloodSupport

Latest Threads

Top