mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Make "script/plugin install" work with svn+ssh URLs
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4383 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
bf1b06e90a
commit
e7fe1c47ba
2 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
|||
*SVN*
|
||||
|
||||
* Make "script/plugin install" work with svn+ssh URLs. [Sam Stephenson]
|
||||
|
||||
* Added lib/ to the directories that will get application docs generated [DHH]
|
||||
|
||||
* Add observer generator. Closes #5167. [francois.beausoleil@gmail.com]
|
||||
|
|
|
@ -159,7 +159,7 @@ class Plugin
|
|||
end
|
||||
|
||||
def svn_url?
|
||||
@uri =~ /svn:\/\/*/
|
||||
@uri =~ /svn(?:\+ssh)?:\/\/*/
|
||||
end
|
||||
|
||||
def installed?
|
||||
|
|
Loading…
Reference in a new issue