aboutsummaryrefslogtreecommitdiffstats
path: root/docs/Formula-Cookbook.md
diff options
context:
space:
mode:
authorMatt Brender2016-10-12 21:38:59 -0400
committerMatt Brender2016-10-12 21:42:57 -0400
commitb84ec63ff9d62e00d2546e36fc2c1941f886d923 (patch)
treeb3885cada940319231ca15f779f5624919acc5f5 /docs/Formula-Cookbook.md
parent62e44a1dac3ed9b9d57e3bac6f6a93143ed96a64 (diff)
downloadbrew-b84ec63ff9d62e00d2546e36fc2c1941f886d923.tar.bz2
Further terminology in docs + link on README
Addressing a few spots where I looked for terminology and did not find what I was looking for. Input based on a recent [podcast with Mike](https://changelog.com/podcast/223)
Diffstat (limited to 'docs/Formula-Cookbook.md')
-rw-r--r--docs/Formula-Cookbook.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/Formula-Cookbook.md b/docs/Formula-Cookbook.md
index 1cf554d03..950b662ae 100644
--- a/docs/Formula-Cookbook.md
+++ b/docs/Formula-Cookbook.md
@@ -9,9 +9,11 @@ A formula is a package definition written in Ruby. It can be created with `brew
| **Keg** | The installation prefix of a **Formula** | `/usr/local/Cellar/foo/0.1` |
| **opt prefix** | A symlink to the active version of a **Keg** | `/usr/local/opt/foo ` |
| **Cellar** | All **Kegs** are installed here | `/usr/local/Cellar` |
-| **Tap** | An optional Git repository of **Formulae** and/or commands | `/usr/local/Homebrew/Library/Taps/homebrew/homebrew-versions` |
+| **Tap** | An optional Git repository of **Formulae** and/or commands | `/usr/local/Homebrew/Library/Taps/homebrew/homebrew-versions` |
| **Bottle** | Pre-built **Keg** used instead of building from source | `qt-4.8.4.mavericks.bottle.tar.gz` |
-
+| **Cask** | An [extension of homebrew](https://github.com/caskroom/homebrew-cask) to install macOS native apps | `/Applications/MacDown.app/Contents/SharedSupport/bin/macdown` |
+| **Brew Bundle**| An [extension of homebrew](https://github.com/Homebrew/homebrew-bundle) to describe dependencies | `brew 'myservice', restart_service: true` |
+
## An Introduction
Homebrew uses Git for downloading updates and contributing to the project.