diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/formula.rb | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index 0e6d6ddd3..eed9a5957 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -15,14 +15,14 @@ class SoftwareSpecification attr_reader :url, :specs, :using VCS_SYMBOLS = { - :bzr, BazaarDownloadStrategy, - :curl, CurlDownloadStrategy, - :cvs, CVSDownloadStrategy, - :git, GitDownloadStrategy, - :hg, MercurialDownloadStrategy, - :nounzip, NoUnzipCurlDownloadStrategy, - :post, CurlPostDownloadStrategy, - :svn, SubversionDownloadStrategy, + :bzr => BazaarDownloadStrategy, + :curl => CurlDownloadStrategy, + :cvs => CVSDownloadStrategy, + :git => GitDownloadStrategy, + :hg => MercurialDownloadStrategy, + :nounzip => NoUnzipCurlDownloadStrategy, + :post => CurlPostDownloadStrategy, + :svn => SubversionDownloadStrategy, } def initialize url, specs=nil |
