Changeset 8921
- Timestamp:
- 02/21/08 22:44:00 (2 years ago)
- Files:
-
- trunk/railties/CHANGELOG (modified) (1 diff)
- trunk/railties/lib/commands/plugin.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/railties/CHANGELOG
r8806 r8921 1 1 *SVN* 2 3 * add a -e/--export to script/plugin install, uses svn export. #10847 [jon@blankpad.net)] 2 4 3 5 * Add config.time_zone for configuring the default Time.zone value. #10982 [Geoff Buesing] trunk/railties/lib/commands/plugin.rb
r8365 r8921 726 726 "Use svn checkout to grab the plugin.", 727 727 "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 } 728 731 o.on( "-q", "--quiet", 729 732 "Suppresses the output from installation.",