Jeff Schwab wrote:
> Short version:  How do I submit a patch?

Submitted ticket 2130, and attached the patch.
http://rails.lighthouseapp.com/projects/8994-ruby-on-rails/tickets/2130

If anybody here knows what they're doing and would care to close the 
ticket, please be my guest.

$ svn diff vendor/rails/railties/lib/commands/plugin.rb
Index: vendor/rails/railties/lib/commands/plugin.rb
===================================================================
--- vendor/rails/railties/lib/commands/plugin.rb        (revision 11)
+++ vendor/rails/railties/lib/commands/plugin.rb        (working copy)
@@ -134,7 +134,7 @@
    def externals
      return [] unless use_externals?
      ext = `svn propget svn:externals "#{root}/vendor/plugins"`
-    ext.reject{ |line| line.strip == '' }.map do |line|
+    ext.lines.reject{ |line| line.strip == '' }.map do |line|
        line.strip.split(/\s+/, 2)
      end
    end

--~--~---------~--~----~------------~-------~--~----~
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@googlegroups.com
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to