The bulk update problem mentioned here (and caused by memory issues):
https://www.oesf.org/forums/index.php?showtopic=21376has been resolved by this nice guy:
http://rubyforge.org/tracker/index.php?fun...id=126&atid=575Following his instructions I was able to install rails using Meanie's ruby package 1.8.5 from
the beta3 custom feed at the Tyrannozaurus siteroot-:) gem list -r
*** REMOTE GEMS ***
GOT HERE! Bulk updating Gem source index for: http://gems.rubyforge.org
6%
...
100%
...
root-:) gem install rails --include-dependencies --version '= 1.1.6' --no-rdoc
Successfully installed rails-1.1.6
Successfully installed rake-0.7.3
Successfully installed activesupport-1.3.1
Successfully installed activerecord-1.14.4
Successfully installed actionpack-1.12.5
Successfully installed actionmailer-1.2.5
Successfully installed actionwebservice-1.1.6
root-:) mkdir ruby-demo
root-:) cd ruby-demo
root-:) rails demo
create
create app/controllers
...
root-:) cd demo
root-:) ./script/server
./script/../config/boot.rb:28:Warning: require_gem is obsolete. Use gem instead.
=> Booting WEBrick...
=> Rails application started on http://0.0.0.0:3000
=> Ctrl-C to shutdown server; call with --help for options
[2007-05-21 14:56:20] INFO WEBrick 1.3.1
[2007-05-21 14:56:20] INFO ruby 1.8.5 (2006-08-25) [armv5tel-linux]
[2007-05-21 14:56:20] INFO WEBrick::HTTPServer#start: pid=1448 port=3000
The installation of the framework itself was rather quick, but an attempt to install the documentation went for >3hrs (with no X):
root-:) top
Mem: 61256K used, 1036K free, 0K shrd, 148K buff, 50632K cached
Load average: 3.32, 2.84, 2.45 (State: S=sleeping R=running, W=waiting)
PID USER STATUS RSS PPID %CPU %MEM COMMAND
1404 root R 45M 1360 78.9 74.4 gem
...
root-:) free
total used free shared buffers
Mem: 62292 60908 1384 0 216
Swap: 269128 58236 210892
so eventually I stopped it.
This shows memory demand of ruby/rails will be high, so a look into
the BleakHouse profiler and
other memory usage notes might be worth it.
The impact of using locally MySQL would be interesting to see.