57 lines
1.0 KiB
Plaintext
57 lines
1.0 KiB
Plaintext
# First, ignore everything.
|
|
/*
|
|
|
|
# Explicitly ignore OS X Finder thumbnail files.
|
|
.DS_Store
|
|
|
|
# Unignore the contents of `Library` as that's where our code lives.
|
|
!/Library/
|
|
|
|
# Ignore files within `Library` (again).
|
|
/Library/Homebrew/.npmignore
|
|
/Library/Homebrew/bin
|
|
/Library/Homebrew/doc
|
|
/Library/Homebrew/test/.gem
|
|
/Library/Homebrew/test/.subversion
|
|
/Library/Homebrew/test/coverage
|
|
/Library/Homebrew/test/fs_leak_log
|
|
/Library/Homebrew/vendor/portable-ruby
|
|
/Library/Taps
|
|
|
|
# Ignore Bundler files
|
|
**/.bundle/bin
|
|
**/.bundle/cache
|
|
**/vendor/bundle
|
|
**/vendor/ruby
|
|
|
|
# Ignore `bin` contents (again).
|
|
/bin
|
|
|
|
# Unignore our `brew` script.
|
|
!/bin/brew
|
|
|
|
# Unignore our documentation/completions.
|
|
!/.github
|
|
!/completions
|
|
!/docs
|
|
!/manpages
|
|
|
|
# Ignore generated documentation site
|
|
/docs/_site
|
|
/docs/bin
|
|
/docs/.jekyll-metadata
|
|
|
|
# Unignore our root-level metadata files.
|
|
!/.gitignore
|
|
!/.travis.yml
|
|
!/.codecov.yml
|
|
!/.yardopts
|
|
!/CHANGELOG.md
|
|
!/CODE_OF_CONDUCT.md
|
|
!/CONTRIBUTING.md
|
|
!/LICENSE.txt
|
|
!/README.md
|
|
|
|
# Unignore tests' bundle config
|
|
!/Library/Homebrew/test/.bundle/config
|