It''s been down for the past five minutes. :-( Perhaps I should rethink my choice of deploying my staging apps using edge rails.
And it''s back up. On 11/28/05, Joe Van Dyk <joevandyk-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> It''s been down for the past five minutes. :-( Perhaps I should > rethink my choice of deploying my staging apps using edge rails. >
On 29.11.2005, at 9.05, Joe Van Dyk wrote:> It''s been down for the past five minutes. :-( Perhaps I should > rethink my choice of deploying my staging apps using edge rails.Well, http://dev.rubyonrails.org/ is a Trac app (read python), so this is hardly a reason to avoid edge rails. //jarkko -- Jarkko Laine http://jlaine.net http://odesign.fi _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails
On 11/29/05, Jarkko Laine <jarkko-k1O+Gnc6WpmsTnJN9+BGXg@public.gmane.org> wrote:> > On 29.11.2005, at 9.05, Joe Van Dyk wrote: > > > It''s been down for the past five minutes. :-( Perhaps I should > > rethink my choice of deploying my staging apps using edge rails. > > Well, http://dev.rubyonrails.org/ is a Trac app (read python), so > this is hardly a reason to avoid edge rails.Yes, but the subversion service was down as well.
On 11/29/05, Jarkko Laine <jarkko-k1O+Gnc6WpmsTnJN9+BGXg@public.gmane.org> wrote:> > On 29.11.2005, at 9.05, Joe Van Dyk wrote: > > > It''s been down for the past five minutes. :-( Perhaps I should > > rethink my choice of deploying my staging apps using edge rails. > > Well, http://dev.rubyonrails.org/ is a Trac app (read python), so > this is hardly a reason to avoid edge rails.I took that to mean that he''s depending on it to actually deploy the app, and the downtime is impeding him. Here''s a switchtower/rake task that I use that keeps a copy of edge rails in my shared directories on the server. Each deployment gets its own rails revision saved on the server. I don''t change rails revisions every time, so I may have several deployments using the same rails version. Most of the time I don''t even hit the ror server to deploy. http://www.bigbold.com/snippets/posts/show/858 -- rick http://techno-weenie.net
On 29.11.2005, at 10.40, Joe Van Dyk wrote:> On 11/29/05, Jarkko Laine <jarkko-k1O+Gnc6WpmsTnJN9+BGXg@public.gmane.org> wrote: >> >> On 29.11.2005, at 9.05, Joe Van Dyk wrote: >> >>> It''s been down for the past five minutes. :-( Perhaps I should >>> rethink my choice of deploying my staging apps using edge rails. >> >> Well, http://dev.rubyonrails.org/ is a Trac app (read python), so >> this is hardly a reason to avoid edge rails. > > Yes, but the subversion service was down as well.A-ha. Good catch :-) The gem servers are not 100% either, so it probably doesn''t matter that much. //jarkko -- Jarkko Laine http://jlaine.net http://odesign.fi _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails
On 11/29/05, Rick Olson <technoweenie-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> On 11/29/05, Jarkko Laine <jarkko-k1O+Gnc6WpmsTnJN9+BGXg@public.gmane.org> wrote: > > > > On 29.11.2005, at 9.05, Joe Van Dyk wrote: > > > > > It''s been down for the past five minutes. :-( Perhaps I should > > > rethink my choice of deploying my staging apps using edge rails. > > > > Well, http://dev.rubyonrails.org/ is a Trac app (read python), so > > this is hardly a reason to avoid edge rails. > > I took that to mean that he''s depending on it to actually deploy the > app, and the downtime is impeding him. > > Here''s a switchtower/rake task that I use that keeps a copy of edge > rails in my shared directories on the server. Each deployment gets > its own rails revision saved on the server. I don''t change rails > revisions every time, so I may have several deployments using the same > rails version. Most of the time I don''t even hit the ror server to > deploy. > > http://www.bigbold.com/snippets/posts/show/858Ooh, that''s quite cool. I was getting worried about the 25MB that gets checked out from the repositories on every deployment.