From: balzer on 5 May 2010 13:19 I downloaded Ruby binaries, ruby-1.8.7-p72-i386-mswin32.zip I' wondering if it's possible configure all package of Ruby environment as a "Portable App" , the idea is to have a fully-functional Ruby environment that executes entirely from hard drive (or USB stick) eaving no footprint whatsoever on the machine it's run on -- no registry entries, no configuration files, etc. If I just unzip all Ruby package into 2nd hard drive, how to run Ruby files? Should I put programs inside some of Ruby directory? Will Ruby write to registry on interact with Windows programs?
From: Marvin Gülker on 5 May 2010 13:28 balzer wrote: > I downloaded Ruby binaries, ruby-1.8.7-p72-i386-mswin32.zip I' > wondering > if it's possible configure all package of Ruby environment as a > "Portable > App" , the > idea is to have a fully-functional Ruby environment that executes > entirely > from hard drive (or USB stick) eaving no footprint whatsoever on the > machine it's run on -- no registry entries, no configuration files, etc. > If > I just unzip all Ruby package into 2nd hard drive, how to run Ruby > files? > Should I put programs inside some of Ruby directory? > > Will Ruby write to registry on interact with Windows programs? No, Ruby doesn't write any registry entries. That's beacuse Ruby IS already quite portable - it runs on nearly every OS and a Registry is quite Windows-specific. So, just unzip your Ruby wherever you want it. In order to start ruby, just do: ---------- C:\> I: I:\> ruby\bin\ruby -v ---------- or whatever drive letter your USB device gets and however the ruby directory is named. Marvin -- Posted via http://www.ruby-forum.com/.
From: balzer on 6 May 2010 05:44 "Marvin Gülker" <sutniuq(a)gmx.net> wrote in message news:20e0dc93e4e2a1d8d772efcebfbd9e87(a)ruby-forum.com... > balzer wrote: >> I downloaded Ruby binaries, ruby-1.8.7-p72-i386-mswin32.zip I' >> wondering >> if it's possible configure all package of Ruby environment as a >> "Portable >> App" , the >> idea is to have a fully-functional Ruby environment that executes >> entirely >> from hard drive (or USB stick) eaving no footprint whatsoever on the >> machine it's run on -- no registry entries, no configuration files, etc. >> If >> I just unzip all Ruby package into 2nd hard drive, how to run Ruby >> files? >> Should I put programs inside some of Ruby directory? >> >> Will Ruby write to registry on interact with Windows programs? > > No, Ruby doesn't write any registry entries. That's beacuse Ruby IS > already quite portable - it runs on nearly every OS and a Registry is > quite Windows-specific. > > So, just unzip your Ruby wherever you want it. In order to start ruby, > just do: > ---------- > C:\> I: > I:\> ruby\bin\ruby -v > ---------- > or whatever drive letter your USB device gets and however the ruby > directory is named. > > Marvin > -- -------------------- And where should be placed programs: inside Ruby directory? thank you.
From: Damjan Rems on 6 May 2010 06:04 balzer wrote: > "Marvin Gülker" <sutniuq(a)gmx.net> wrote in message > news:20e0dc93e4e2a1d8d772efcebfbd9e87(a)ruby-forum.com... >>> If >> So, just unzip your Ruby wherever you want it. In order to start ruby, >> just do: >> ---------- >> C:\> I: >> I:\> ruby\bin\ruby -v >> ---------- >> or whatever drive letter your USB device gets and however the ruby >> directory is named. >> >> Marvin >> -- > -------------------- > > And where should be placed programs: inside Ruby directory? > > thank you. It doesn't matter at all. Go to whatever directory and type: i:\ruby\bin\ruby myrubyprog.rb by TheR -- Posted via http://www.ruby-forum.com/.
From: balzer on 6 May 2010 07:47 "Damjan Rems" <d_rems(a)yahoo.com> wrote in message news:cbbed86947f0131c33a01b42e7df036f(a)ruby-forum.com... > balzer wrote: >> "Marvin Gülker" <sutniuq(a)gmx.net> wrote in message >> news:20e0dc93e4e2a1d8d772efcebfbd9e87(a)ruby-forum.com... >>>> If >>> So, just unzip your Ruby wherever you want it. In order to start ruby, >>> just do: >>> ---------- >>> C:\> I: >>> I:\> ruby\bin\ruby -v >>> ---------- >>> or whatever drive letter your USB device gets and however the ruby >>> directory is named. >>> >>> Marvin >>> -- >> -------------------- >> >> And where should be placed programs: inside Ruby directory? >> >> thank you. > > It doesn't matter at all. > > Go to whatever directory and type: i:\ruby\bin\ruby myrubyprog.rb > > by > TheR > -- ---------------- Type command where: in windows cmd prompt , MS DOS windows or other place?
|
Next
|
Last
Pages: 1 2 Prev: do Rails/gems updates break applications? Next: public_methods vs methods |