aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/download_strategy.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb
index 625dbaf9a..f8e66001f 100644
--- a/Library/Homebrew/download_strategy.rb
+++ b/Library/Homebrew/download_strategy.rb
@@ -188,7 +188,7 @@ class CurlUnsafeDownloadStrategy < CurlDownloadStrategy
end
# This strategy extracts our binary packages.
-class CurlBottleDownloadStrategy <CurlDownloadStrategy
+class CurlBottleDownloadStrategy < CurlDownloadStrategy
def initialize url, name, version, specs
super
@tarball_path = HOMEBREW_CACHE/"#{name}-#{version}.bottle#{ext}"
@@ -199,7 +199,7 @@ class CurlBottleDownloadStrategy <CurlDownloadStrategy
end
end
-class SubversionDownloadStrategy <AbstractDownloadStrategy
+class SubversionDownloadStrategy < AbstractDownloadStrategy
def initialize url, name, version, specs
super
@unique_token="#{name}--svn" unless name.to_s.empty? or name == '__UNKNOWN__'