diff options
| author | Jack Nagel | 2014-07-22 19:12:26 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-07-22 19:14:30 -0500 |
| commit | c3a5b1152ee2dfcf9ad8021d995ec59e457257ea (patch) | |
| tree | aeeda18943a87eed105dce1497dbdaf8a1cd0376 /Library | |
| parent | d99379bc631b060b6c6453b3b9babf3310a2c02b (diff) | |
| download | brew-c3a5b1152ee2dfcf9ad8021d995ec59e457257ea.tar.bz2 | |
Stop exposing the downloader as an attribute
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/software_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/software_spec.rb b/Library/Homebrew/software_spec.rb index 6a5efe3ee..fb29ad5a6 100644 --- a/Library/Homebrew/software_spec.rb +++ b/Library/Homebrew/software_spec.rb @@ -17,7 +17,7 @@ class SoftwareSpec def_delegators :@resource, :stage, :fetch, :verify_download_integrity def_delegators :@resource, :cached_download, :clear_cache - def_delegators :@resource, :checksum, :mirrors, :specs, :using, :downloader + def_delegators :@resource, :checksum, :mirrors, :specs, :using def_delegators :@resource, :version, :mirror, *Checksum::TYPES def initialize @@ -147,7 +147,7 @@ class Bottle attr_reader :name, :resource, :prefix, :cellar, :revision def_delegators :resource, :url, :fetch, :verify_download_integrity - def_delegators :resource, :downloader, :cached_download, :clear_cache + def_delegators :resource, :cached_download, :clear_cache def initialize(formula, spec) @name = formula.name |
