Hi guys, I''m haviing problems when trying to freeze rails within my application. By doing this: rake rails:freeze:edge RELEASE=2.3.10 I''m getting this error: cd vendor Downloading Rails from http://dev.rubyonrails.org/archives/rails_2.3.10.zip rake aborted! Connection reset by peer It''s been several days(from last thursday) with the same problem now, does anyone know what''s happening with dev.rubyonrails.org or is it just me doing something wrong? Thanks a lot in advance. -- Leonardo Mateo. There''s no place like ~ -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On 17 January 2011 14:28, Leonardo Mateo <leonardomateo-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Hi guys, > I''m haviing problems when trying to freeze rails within my application. > By doing this: > rake rails:freeze:edge RELEASE=2.3.10Why are you specifying edge, is that really what you want? If rails is specified as 2.3.10 in environment.rb then you should just be able to do rake rails:freeze:gems or if you feel you need to specify the version rake rails:freeze:gems VERSION=2.3.10 note VERSION not RELEASE Colin> I''m getting this error: > > cd vendor > Downloading Rails from http://dev.rubyonrails.org/archives/rails_2.3.10.zip > rake aborted! > Connection reset by peer > > It''s been several days(from last thursday) with the same problem now, > does anyone know what''s happening with dev.rubyonrails.org or is it > just me doing something wrong? > > Thanks a lot in advance. > > -- > Leonardo Mateo. > There''s no place like ~ > > -- > 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. > >-- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On Mon, Jan 17, 2011 at 11:38 AM, Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> On 17 January 2011 14:28, Leonardo Mateo <leonardomateo-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> Hi guys, >> I''m haviing problems when trying to freeze rails within my application. >> By doing this: >> rake rails:freeze:edge RELEASE=2.3.10 > > Why are you specifying edge, is that really what you want?I''ve always frozen rails this way. I don''t want to freeze all my gems but only rails.> If rails is specified as 2.3.10 in environment.rb then you should just > be able to do > rake rails:freeze:gems > or if you feel you need to specify the version > rake rails:freeze:gems VERSION=2.3.10 > note VERSION not RELEASEWill this freeze gems under the vendor/gems and rails under vendor/rails? -- Leonardo Mateo. There''s no place like ~ -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On 17 January 2011 15:51, Leonardo Mateo <leonardomateo-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> On Mon, Jan 17, 2011 at 11:38 AM, Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: >> On 17 January 2011 14:28, Leonardo Mateo <leonardomateo-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >>> Hi guys, >>> I''m haviing problems when trying to freeze rails within my application. >>> By doing this: >>> rake rails:freeze:edge RELEASE=2.3.10 >> >> Why are you specifying edge, is that really what you want? > I''ve always frozen rails this way. I don''t want to freeze all my gems > but only rails. > >> If rails is specified as 2.3.10 in environment.rb then you should just >> be able to do >> rake rails:freeze:gems >> or if you feel you need to specify the version >> rake rails:freeze:gems VERSION=2.3.10 >> note VERSION not RELEASE > Will this freeze gems under the vendor/gems and rails under vendor/rails?Try it and see, it is some time since I last did it. If you don''t like the result all you have to do is delete the files. All freeze does is to copy files. Also you have always got it committed to you source control system so you can easily get back to where you were. Colin Colin -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.