diff options
| author | Jack Nagel | 2013-12-09 15:15:53 -0600 |
|---|---|---|
| committer | Jack Nagel | 2013-12-09 15:15:53 -0600 |
| commit | bac053673017e961f949ecd390c465e339b1c425 (patch) | |
| tree | 55ed2ef965e552c8cbe578631f8b9a81f5e6c772 /Library | |
| parent | e1480953e605183cf0aa8a63e212576efa511e7e (diff) | |
| download | brew-bac053673017e961f949ecd390c465e339b1c425.tar.bz2 | |
keg_only_reason and cc_failures are not DSL methods
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/formula.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index c18fb59a1..e1c1ded55 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -666,8 +666,8 @@ class Formula # The methods below define the formula DSL. class << self - attr_rw :homepage, :keg_only_reason, :cc_failures - attr_rw :plist_startup, :plist_manual + attr_reader :keg_only_reason, :cc_failures + attr_rw :homepage, :plist_startup, :plist_manual def specs @specs ||= [stable, devel, head, bottle].freeze |
