Hello,
Following the indications listed here:
http://weblog.rubyonrails.org/2010/2/5/rails-3-0-beta-release/
in other words:
sudo gem install tzinfo builder memcache-client rack rack-test rack-
mount erubis mail text-format thor bundler i18n
sudo gem install rails --pre
The first line installed gems without complaint. When I tried the
second (sudo gem install rails --pre), it complains:
ERROR: Error installing rails:
activesupport requires memcache-client (~> 1.7.5, runtime)
However:
gem list --local | grep memc
memcache-client (1.8.0)
So I checked and, from irb:
>> require 'memcache'
[memcache-client] Could not load SystemTimer gem, falling back to
Ruby's slower/unsafe timeout library: no such file to load --
system_timer
OK so I added that:
sudo gem install system_timer
And now from irb it seems OK:
>> require 'memcache'
=> true
>> MemCache::VERSION
=> "1.8.0"
But install of rails --pre still gives no joy:
sudo gem install rails --pre
ERROR: Error installing rails:
activesupport requires memcache-client (~> 1.7.5, runtime)
Any ideas?
Thanks,
Ben
--
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.