Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 8921

Show
Ignore:
Timestamp:
02/21/08 22:44:00 (2 years ago)
Author:
nzkoz
Message:

Patch to add a -e (export) option to script/plugin install. Closes #10847 [jon@blankpad.net]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/railties/CHANGELOG

    r8806 r8921  
    11*SVN* 
     2 
     3* add a -e/--export to script/plugin install, uses svn export. #10847 [jon@blankpad.net)] 
    24 
    35* Add config.time_zone for configuring the default Time.zone value.  #10982 [Geoff Buesing] 
  • trunk/railties/lib/commands/plugin.rb

    r8365 r8921  
    726726                      "Use svn checkout to grab the plugin.", 
    727727                      "Enables updating but does not add a svn:externals entry.") { |v| @method = :checkout } 
     728        o.on(         "-e", "--export", 
     729                      "Use svn export to grab the plugin.", 
     730                      "Exports the plugin, allowing you to check it into your local repository. Does not enable updates, or add an svn:externals entry.") { |v| @method = :export } 
    728731        o.on(         "-q", "--quiet", 
    729732                      "Suppresses the output from installation.",