[id-ruby] Rails 2.0 issue

2008-01-22 Thread Yudi Soesanto
Guys, Application: beast-1.0 Aku baru aja upgraded rails 2.0 di mac with these command; - gem update --system - gem install rails and my beast application is broken now. Waktu aku coba run script/server, I got few errors, macbooks-computer:~/Desktop/work/beast-1.0 macbook$ script/server => Boo

Re: [id-ruby] Rails 2.0 issue

2008-01-22 Thread Kamal Fariz
The error is because of the new RubyGems version, not because of Rails 2. require_gem is deprecated. Replace all instances of require_gem with just gem E.g. old require_gem 'activesupport' new - gem 'activesupport' On Jan 22, 2008, at 3:31 PM, Yudi Soesanto wrote: > Guys, > Applica