Hello there! I''m trying to deploy a application, but capistrano gives me the following error: *** [err :: my-domain.com] rake aborted! *** [err :: my-domain.com] RubyGem version error: rack(0.3.0 not ~> 1.0.0) *** [err :: my-domain.com] it''s strange because I freeze my application before deploy with: rake rails:freeze:gems rake gems:unpack does anybody have an advice here? thanks a lot! Luciano
Roger Pack
2009-Nov-12 14:34 UTC
Re: RubyGem version error: rack(0.3.0 not ~> 1.0.0) on deploy
> *** [err :: my-domain.com] RubyGem version error: rack(0.3.0 not ~> > 1.0.0) > > does anybody have an advice here?maybe capistrano is using the rubygems installed version, not the packed one [uninstall the gem on the remote]? r -- Posted via http://www.ruby-forum.com/.
Luciano
2009-Nov-12 17:29 UTC
Re: RubyGem version error: rack(0.3.0 not ~> 1.0.0) on deploy
hello Roger. do you mean, updating capistrano on the server (shared host)? thanks! Luciano On Nov 12, 12:34 pm, Roger Pack <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> > *** [err :: my-domain.com] RubyGem version error: rack(0.3.0 not ~> > > 1.0.0) > > > does anybody have an advice here? > > maybe capistrano is using the rubygems installed version, not the packed > one [uninstall the gem on the remote]? > r > -- > Posted viahttp://www.ruby-forum.com/.
pharrington
2009-Nov-12 17:50 UTC
Re: RubyGem version error: rack(0.3.0 not ~> 1.0.0) on deploy
On Nov 12, 12:29 pm, Luciano <bonach...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> hello Roger. > > do you mean, updating capistrano on the server (shared host)? > > thanks! > > Luciano > > On Nov 12, 12:34 pm, Roger Pack <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> > wrote: > > > > > > *** [err :: my-domain.com] RubyGem version error: rack(0.3.0 not ~> > > > 1.0.0) > > > > does anybody have an advice here? > > > maybe capistrano is using the rubygems installed version, not the packed > > one [uninstall the gem on the remote]? > > r > > -- > > Posted viahttp://www.ruby-forum.com/.He probably means updating Rack on the server. Ask your host if they''ll do that; if not, you''ll need to SSH in and install Rubygems in your local directory.
Luciano
2009-Nov-12 20:31 UTC
Re: RubyGem version error: rack(0.3.0 not ~> 1.0.0) on deploy
Thanks pharrington! On Nov 12, 3:50 pm, pharrington <xenogene...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> On Nov 12, 12:29 pm, Luciano <bonach...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > > > > > hello Roger. > > > do you mean, updating capistrano on the server (shared host)? > > > thanks! > > > Luciano > > > On Nov 12, 12:34 pm, Roger Pack <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> > > wrote: > > > > > *** [err :: my-domain.com] RubyGem version error: rack(0.3.0 not ~> > > > > 1.0.0) > > > > > does anybody have an advice here? > > > > maybe capistrano is using the rubygems installed version, not the packed > > > one [uninstall the gem on the remote]? > > > r > > > -- > > > Posted viahttp://www.ruby-forum.com/. > > He probably means updating Rack on the server. Ask your host if > they''ll do that; if not, you''ll need to SSH in and install Rubygems in > your local directory.