I added a new rake task that does what merb''s rake task: svn_add does. Basically, when you run the rake task it checks to see what files have not been added to your svn repo and adds them. thoughts/+1''s/-1''s/whatever :) -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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 19 Jan. 2008, at 23:38, Robert Evans wrote:> > I added a new rake task that does what merb''s rake task: svn_add does. > Basically, when you run the rake task it checks to see what files have > not been added to your svn repo and adds them. > > thoughts/+1''s/-1''s/whatever :)Robert, Could you please post a link to the ticket with patch in the Rails Trac? Thanks. MK void@novemberain.com http://novemberain.com --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Robert, Why should this belong to a web framework? It is everyone''s right to use an SCM other than Subversion and to build a development environment around that on their own. Personally I keep such stuff in shell aliases and scripts, such as this one for bash: alias svnaddall=''svn status | grep "^\?" | awk "{print \$2}" | xargs svn add'' I really don''t think a web framework should know about, care for or become optimized in any way for a specific SCM, regardless of whether or not 95% of developers use Subversion. SCM helpers, scripts and tools should be distributed outside of framework core. - Mislav On Jan 19, 2008 10:38 PM, Robert Evans <ruby-forum-incoming@andreas-s.net> wrote:> > I added a new rake task that does what merb''s rake task: svn_add does. > Basically, when you run the rake task it checks to see what files have > not been added to your svn repo and adds them. > > thoughts/+1''s/-1''s/whatever :) > -- > Posted via http://www.ruby-forum.com/. > > > >--~--~---------~--~----~------------~-------~--~----~ 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 Jan 20, 2008 12:46 AM, Mislav Marohnić <mislav.marohnic@gmail.com> wrote:> > I really don't think a web framework should know about, care for or become > optimized in any way for a specific SCM, regardless of whether or not 95% of > developers use Subversion. SCM helpers, scripts and tools should be > distributed outside of framework core.I forgot to mention how Rails supports Subversion in generators and script/plugin. While this is great and very useful, I don't think it should go further than that, especially not in form of new rake tasks (there is a great number of them already). --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Mislav :> I really don''t think a web framework should know about, care for > or become optimized in any way for a specific SCM, regardless > of whether or not 95% of developers use Subversion. SCM helpers, > scripts and tools should be distributed outside of framework core.Are you suggesting to remove all the Subversion-related features in Rails ? Here are some examples showing that Rails is not SCM-agnostic and Subversion-opiniated : - Rake task ''test:uncommitted '', - all the plugin installation system, - ''--svn'' option for Rails generator ... (I don''t include the Rake tasks to freeze Rails in vendor / ) -- Jean-François. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Mislav :> I forgot to mention how Rails supports Subversion in generators and > script/plugin. While this is great and very useful, I don''t think it should > go further than that, especially not in form of new rake tasks (there is a > great number of them already).Ok, I''ve got my answer. I read your answer after sending my mail :) -- Jean-François. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Yeah, I suppose a link would help :0 http://dev.rubyonrails.org/ticket/10864 Mislav: Since Rails has support for subversion out of the box, adding 1 rake task didn''t seem to me to make a decision for someone to "have" to use svn. Just like the current support for svn in Rails, this is an added convenience. On Jan 19, 3:26 pm, Michael Klishin <michael.s.klishin.li...@gmail.com> wrote:> On 19 Jan. 2008, at 23:38, Robert Evans wrote: > > > > > I added a new rake task that does what merb''s rake task: svn_add does. > > Basically, when you run the rake task it checks to see what files have > > not been added to your svn repo and adds them. > > > thoughts/+1''s/-1''s/whatever :) > > Robert, > > Could you please post a link to the ticket with patch in the Rails > Trac? Thanks. > > MK > v...@novemberain.comhttp://novemberain.com--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
> Yeah, I suppose a link would help :0 http://dev.rubyonrails.org/ticket/10864 > > Mislav: Since Rails has support for subversion out of the box, adding > 1 rake task didn''t seem to me to make a decision for someone to "have" > to use svn. Just like the current support for svn in Rails, this is an > added convenience.I have to side with mislav and co. I think our current level of svn support is nice enough but to take it further doesn''t seem justified. -- Cheers Koz --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---