aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2011-06-16 21:25:29 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2011-06-16 21:28:42 +0530
commitd92ad224e0e07cc109ec3eea7c93de5ef8cfdfea (patch)
tree89edbedd3ed35e7aae67bfe3280286d8096a0b2c /railties/lib/rails
parenteedbe1c827beb17f60c479bdf08b25e4f8d2c0e4 (diff)
downloadrails-d92ad224e0e07cc109ec3eea7c93de5ef8cfdfea.tar.gz
rails-d92ad224e0e07cc109ec3eea7c93de5ef8cfdfea.tar.bz2
rails-d92ad224e0e07cc109ec3eea7c93de5ef8cfdfea.zip
replace dev.ror.com plugin url with a dummy one
Diffstat (limited to 'railties/lib/rails')
-rw-r--r--railties/lib/rails/commands/plugin.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/rails/commands/plugin.rb b/railties/lib/rails/commands/plugin.rb
index 048af7cbef..4df849447d 100644
--- a/railties/lib/rails/commands/plugin.rb
+++ b/railties/lib/rails/commands/plugin.rb
@@ -313,11 +313,11 @@ module Commands
o.separator ""
o.separator "EXAMPLES"
o.separator " Install a plugin from a subversion URL:"
- o.separator " #{@script_name} plugin install http://dev.rubyonrails.com/svn/rails/plugins/continuous_builder\n"
+ o.separator " #{@script_name} plugin install http://example.com/my_svn_plugin\n"
o.separator " Install a plugin from a git URL:"
o.separator " #{@script_name} plugin install git://github.com/SomeGuy/my_awesome_plugin.git\n"
o.separator " Install a plugin and add a svn:externals entry to vendor/plugins"
- o.separator " #{@script_name} plugin install -x continuous_builder\n"
+ o.separator " #{@script_name} plugin install -x my_svn_plugin\n"
end
end