Minimal ruby install

Hi All,

I submitted a similar request over on the rails forum, but feel this is
probably the more appropriate place, sorry for any duplication.

Is there an embedded version of ruby available? Or is there a way to
determine the required libraries for a rails application to make a
minimal footprint distribution of the ruby and rails libs etc? Bearing
in mind low memory usage and disk space considerations.

As a little background, we deploy on server class machines and are
looking into thin clients and embedded possibilities.

Finally, if I make my own minimal distribution I certainly do not want
to violate any licensing etc…any concerns here?

Any comments or guidance would be appreciated.

thanks,
Rick

On Tue, Jan 27, 2009 at 12:05 AM, Rick F.
[email protected] wrote:

As a little background, we deploy on server class machines and are
looking into thin clients and embedded possibilities.

Finally, if I make my own minimal distribution I certainly do not want
to violate any licensing etc…any concerns here?

Any comments or guidance would be appreciated.

minimal footprint and rails?
just did a quick grep and rails depends on around 45 libraries from
stdlib and pretty much every byte of ruby core (which is why it’s a
nice testcase for new ruby implementations), are you sure you don’t
want to go for something more lightweight?

^ manveru

just did a quick grep and rails depends on around 45 libraries from
stdlib and pretty much every byte of ruby core (which is why it’s a
nice testcase for new ruby implementations), are you sure you don’t
want to go for something more lightweight?

^ manveru

Right…good question. At a minimum I need to support DB access and
remote connectivity on the thin clients or embedded systems. The remote
connectivity can be me writing a multi-threaded server and processing
commands in a web service-ish way or including a lightweight HTTP server
if practical. The DB access could be DBI based stuff as well versus
using Active Record.

So one approach is compiling Ruby I suppose for each platform required,
including a minimal set of libs etc.

I am really looking for input to see what I am getting myself involved
in. It may be that using Ruby for this implementation is not ideal.

I would certainly consider different technologies, I am involved with
Ruby right now an was curious if it is practical.

Thanks for the input,
Rick

Rick F. wrote:

I would certainly consider different technologies, I am involved with
Ruby right now an was curious if it is practical.

I love Ruby, but for embedded applications you might check out Lua. I
don’t know if Lua will have all the libraries you need, though.