From 02b09e311f8d8934bfdff77d740ad20d0ea99f80 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Tue, 21 Jun 2011 16:34:07 -0700 Subject: [PATCH] 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. --- Library/Homebrew/formula.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index 4a2b033b6b..046a93bfa7 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