diff options
| author | Jack Nagel | 2014-06-19 21:35:46 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-06-20 21:32:36 -0500 |
| commit | 56c89c48b9a4b6cd57fd9b7bec2da11fc9faa24a (patch) | |
| tree | 0cb25626580ef6b4b48d484821e6b7f9f489b15c /Library/Homebrew/formula.rb | |
| parent | 7eb0d525ae1550163024a5dfa7b5b46dd3211049 (diff) | |
| download | homebrew-56c89c48b9a4b6cd57fd9b7bec2da11fc9faa24a.tar.bz2 | |
Pass the requested spec into the formula instance
Diffstat (limited to 'Library/Homebrew/formula.rb')
| -rw-r--r-- | Library/Homebrew/formula.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index 66bf75d17..93170ef64 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -26,7 +26,7 @@ class Formula attr_accessor :local_bottle_path - def initialize(name, path) + def initialize(name, path, spec) @name = name @path = path @homepage = self.class.homepage |
