Deploying EdgeRails app(revision 7722)

Even though I’ve freezed the edge version of the app (rake
rails:freeze:edge), when starting up the application I get this error:

[sergiutruta@jervis ~/etc/rc.d]$ /usr/local/lib/ruby/site_ruby/1.8/
rubygems/custom_require.rb:21:in require__': no such file to load -- active_resource (MissingSourceFile) from /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb: 21:inrequire’

I understand it’s complaining because it cannot find active_resourse,
and looking into the vendor/rails folder, there’s no active resource
there indeed. What am I doing wrong here?

Do another rake rails:freeze:edge. I know it sounds strange, but the
first one installs a lot of the edge version as well as the Rake
tasks. The second time you do it, the new Rake task knows enough to
grab ActiveResource.

yupiii, thanks ross. it worked :slight_smile: