Skip to content

Commit

Permalink
Make "script/plugin install" work with svn+ssh URLs
Browse files Browse the repository at this point in the history
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4383 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
sstephenson committed May 31, 2006
1 parent bf1b06e commit e7fe1c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions railties/CHANGELOG
@@ -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]
Expand Down
2 changes: 1 addition & 1 deletion railties/lib/commands/plugin.rb
Expand Up @@ -159,7 +159,7 @@ def to_s
end

def svn_url?
@uri =~ /svn:\/\/*/
@uri =~ /svn(?:\+ssh)?:\/\/*/
end

def installed?
Expand Down

0 comments on commit e7fe1c4

Please sign in to comment.