diff options
| author | Adam Vandenberg | 2011-06-21 16:34:07 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2011-06-22 14:13:44 -0700 |
| commit | 02b09e311f8d8934bfdff77d740ad20d0ea99f80 (patch) | |
| tree | 2b9978182b291aec645a36585be6082b79852708 /Library | |
| parent | e9b50941db233fe081159502b91bcac1fadd7a01 (diff) | |
| download | brew-02b09e311f8d8934bfdff77d740ad20d0ea99f80.tar.bz2 | |
formula.rb: put bottle attrs on separate line
This line is getting long, and having these on a separate line
will help with some rebasing in some work-in-progress branches.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/formula.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index 4a2b033b6..046a93bfa 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -101,7 +101,8 @@ end class Formula include FileUtils - attr_reader :name, :path, :url, :bottle, :bottle_sha1, :version, :homepage, :specs, :downloader + attr_reader :name, :path, :url, :version, :homepage, :specs, :downloader + attr_reader :bottle, :bottle_sha1 # Homebrew determines the name def initialize name='__UNKNOWN__', path=nil |
