diff options
| author | Nikolaus Wittenstein | 2015-05-20 11:13:36 -0400 |
|---|---|---|
| committer | Mike McQuaid | 2015-05-25 17:23:51 +0100 |
| commit | 664c8deaab7ee56552a8e5f39adb621b36d29e6e (patch) | |
| tree | 341bf6185428ad3d2df062c674a11cd70cae1a88 /Library | |
| parent | f1ed19d96bb068b4350c4f4e46b2e05e3ea2cdd2 (diff) | |
| download | brew-664c8deaab7ee56552a8e5f39adb621b36d29e6e.tar.bz2 | |
example-formula.rb has a 'desc'
Closes Homebrew/homebrew#39911.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Contributions/example-formula.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Contributions/example-formula.rb b/Library/Contributions/example-formula.rb index d12e3f1ba..5cfb39a0a 100644 --- a/Library/Contributions/example-formula.rb +++ b/Library/Contributions/example-formula.rb @@ -9,6 +9,7 @@ # Homebrew does enforce that the name of the file and the class correspond. # Check with `brew search` that the name is free. class ExampleFormula < Formula + desc "An example formula" # shows up in `brew info`, and can be searched with `brew search --desc`. homepage "https://www.example.com" # used by `brew home example-formula`. revision 1 # This is used when there's no new version but it needs recompiling for another reason. # 0 is default & unwritten. |
