[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

[ANN] AllInOneRuby 0.2.4

Erik Veenstra

6/14/2005 8:10:00 PM


I just released AllInOneRuby 0.2.4.

AllInOneRuby creates a compressed executable for Windows, Linux
or Mac OS X (Darwin) that includes both the Ruby interpreter
and the runtime libraries. Why? Because it's sometimes not
easy, or possible, or desirable, or allowed to do a complete
Ruby installation. That's where AllInOneRuby comes in. I always
have a USB-memory stick with AllInOneRuby in my pocket.

More information and download on:
http://www.erikve...allinoneruby/...

gegroet,
Erik V. - http://www.erikve...

----------------------------------------------------------------

Only one change:

* Fixed a bug concerning spaces in %TEMP%.

----------------------------------------------------------------

2 Answers

jgreek

6/14/2005 8:48:00 PM

0

Very nice work. Does this installation executable include everything
that is necessary for creating Rails web applications, or must that be
added after the installation?

John

Erik Veenstra wrote:
> I just released AllInOneRuby 0.2.4.
>
> AllInOneRuby creates a compressed executable for Windows, Linux
> or Mac OS X (Darwin) that includes both the Ruby interpreter
> and the runtime libraries. Why? Because it's sometimes not
> easy, or possible, or desirable, or allowed to do a complete
> Ruby installation. That's where AllInOneRuby comes in. I always
> have a USB-memory stick with AllInOneRuby in my pocket.
>
> More information and download on:
> http://www.erikve...allinoneruby/...
>
> gegroet,
> Erik V. - http://www.erikve...
>
> ----------------------------------------------------------------
>
> Only one change:
>
> * Fixed a bug concerning spaces in %TEMP%.
>
> ----------------------------------------------------------------

Erik Veenstra

6/14/2005 9:57:00 PM

0

> Very nice work. Does this installation executable include
> everything that is necessary for creating Rails web
> applications, or must that be added after the installation?

AllInOneRuby normally only embeds the default runtime
libraries. The ones which come with Ruby when you compile it
yourself. But when you use the option --site (or -s) all files
in Config::CONFIG["sitelibdir"] are included as well. So, if
Rails and its dependencies are installed in this directory
tree, it should be embedded. The RubyGems versions of Rails
won't work, because RubyGems doesn't use the sitelib
directories for installing the gems, although it's installed
there itself.

On the other hand, once the directory of a Rails application
(and thus "the application") is created and you finished
development, you don't need the sitelib-stuff of Rails anymore.
(At least, I'm told... I'm not a Rails developer myself.) This
means that you can create a Rails application, pack it [2, 3,
4] into an RBA with Tar2RubyScript [1] and run this RBA with
AllInOneRuby.

gegroet,
Erik V. - http://www.erikve...

[1] http://www.erikve...tar2rubyscript/index.html
[2] http://dev.rubyonrails.com/...
[3] http://www.google.nl/search?hl=nl&q=site%3Arubyonrails.org+tar2rubyscript&btnG=zoeken...
[4] http://www.google.nl/search?hl=nl&q=site%3Arubyonrails.com+tar2rubyscript&btnG=Zoeken...