diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2011-06-16 21:25:29 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2011-06-16 21:28:42 +0530 |
commit | d92ad224e0e07cc109ec3eea7c93de5ef8cfdfea (patch) | |
tree | 89edbedd3ed35e7aae67bfe3280286d8096a0b2c /railties/lib | |
parent | eedbe1c827beb17f60c479bdf08b25e4f8d2c0e4 (diff) | |
download | rails-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')
-rw-r--r-- | railties/lib/rails/commands/plugin.rb | 4 |
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 |