Hey guys, can we get this patch applied? Currently the rails app generated with ''rake dev'' is broken. A patch with more than enough +1''s was submitted during the rails bugmash: https://rails.lighthouseapp.com/projects/8994/tickets/3268-erd-in-environmentrb-after-running-rake-dev -John
What is meant by "rake dev", by the way? rake -T with a clean 2.3.4 app doesn''t show any task named "dev" on my box. Jeff On Oct 4, 2:22 pm, John Trupiano <jtrupi...@gmail.com> wrote:> Hey guys, can we get this patch applied? Currently the rails app > generated with ''rake dev'' is broken. A patch with more than enough > +1''s was submitted during the rails bugmash:https://rails.lighthouseapp.com/projects/8994/tickets/3268-erd-in-env... > > -John
Hi Jeff, From within the railties project, running ''rake dev'' will generate a rails app with the current codebase and stick it in LOCAL_CHECKOUT_ROOT/rails. It is very helpful for testing the behavior of bugs reported in lighthouse. -John On Mon, Oct 5, 2009 at 4:29 PM, Jeff <cohen.jeff@gmail.com> wrote:> > What is meant by "rake dev", by the way? > > rake -T with a clean 2.3.4 app doesn''t show any task named "dev" on my > box. > > Jeff > > On Oct 4, 2:22 pm, John Trupiano <jtrupi...@gmail.com> wrote: > > Hey guys, can we get this patch applied? Currently the rails app > > generated with ''rake dev'' is broken. A patch with more than enough > > +1''s was submitted during the rails bugmash: > https://rails.lighthouseapp.com/projects/8994/tickets/3268-erd-in-env... > > > > -John > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group. To post to this group, send email to rubyonrails-core@googlegroups.com To unsubscribe from this group, send email to rubyonrails-core+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-core?hl=en -~----------~----~----~----~------~----~------~--~---
In case it wasn''t clear, this command is run from within a local checkout of the rails source, e.g. git clone git://github.com/rails/rails.git cd rails git branch --track 2-3-stable origin/2-3-stable git checkout 2-3-stable cd railties rake dev This used to work fine but now leaves ERB in config/environment.rb of the generated app. -John On Mon, Oct 5, 2009 at 4:32 PM, John Trupiano <jtrupiano@gmail.com> wrote:> Hi Jeff, > From within the railties project, running ''rake dev'' will generate a rails > app with the current codebase and stick it in LOCAL_CHECKOUT_ROOT/rails. > > It is very helpful for testing the behavior of bugs reported in lighthouse. > > -John > > > On Mon, Oct 5, 2009 at 4:29 PM, Jeff <cohen.jeff@gmail.com> wrote: > >> >> What is meant by "rake dev", by the way? >> >> rake -T with a clean 2.3.4 app doesn''t show any task named "dev" on my >> box. >> >> Jeff >> >> On Oct 4, 2:22 pm, John Trupiano <jtrupi...@gmail.com> wrote: >> > Hey guys, can we get this patch applied? Currently the rails app >> > generated with ''rake dev'' is broken. A patch with more than enough >> > +1''s was submitted during the rails bugmash: >> https://rails.lighthouseapp.com/projects/8994/tickets/3268-erd-in-env... >> > >> > -John >> >> >> >-- John Trupiano President SmartLogic Solutions http://www.smartlogicsolutions.com @jtrupiano --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group. To post to this group, send email to rubyonrails-core@googlegroups.com To unsubscribe from this group, send email to rubyonrails-core+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-core?hl=en -~----------~----~----~----~------~----~------~--~---
On Oct 5, 3:36 pm, John Trupiano <jtrupi...@gmail.com> wrote:> In case it wasn''t clear, this command is run from within a local checkout of > the rails source, e.g. > git clone git://github.com/rails/rails.git > cd rails > git branch --track 2-3-stable origin/2-3-stable > git checkout 2-3-stable > cd railties > rake devAh! Thanks. Jeff