aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/download_strategy.rb
diff options
context:
space:
mode:
authorJack Nagel2013-09-26 16:59:45 -0500
committerJack Nagel2013-09-26 17:00:00 -0500
commitdd43a9552ad1b3a7be6aadd8bb5f0147b4224fbc (patch)
tree507e6e56af47b7434fa4e4dfa257a25160bb65e0 /Library/Homebrew/download_strategy.rb
parentd16abcddd55290a380a8db976c5918cac0ac45e8 (diff)
downloadhomebrew-dd43a9552ad1b3a7be6aadd8bb5f0147b4224fbc.tar.bz2
Raise when given an invalid download strategy spec
When DownloadStrategyDetector.detect is given a second argument, and that argument is not a symbol or an AbstractDownloadStrategy subclass, it is silently ignored, and we fall back to guessing the strategy based on the URL. This means I can do url 'http://foo.com/bar.tar.gz', :using => Class.new and things will appear to work, even though I have clearly passed an invalid value for :using. A more useful behavior is to raise an exception for unknown strategy specifications.
Diffstat (limited to 'Library/Homebrew/download_strategy.rb')
-rw-r--r--Library/Homebrew/download_strategy.rb11
1 files changed, 7 insertions, 4 deletions
diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb
index 01ff12a71..df903c3bc 100644
--- a/Library/Homebrew/download_strategy.rb
+++ b/Library/Homebrew/download_strategy.rb
@@ -761,12 +761,15 @@ end
class DownloadStrategyDetector
def self.detect(url, strategy=nil)
- if strategy.is_a? Class and strategy.ancestors.include? AbstractDownloadStrategy
- strategy
- elsif strategy.is_a? Symbol
+ if strategy.nil?
+ detect_from_url(url)
+ elsif Class === strategy && strategy < AbstractDownloadStrategy
+ strategy
+ elsif Symbol === strategy
detect_from_symbol(strategy)
else
- detect_from_url(url)
+ raise TypeError,
+ "Unknown download strategy specification #{strategy.inspect}"
end
end