aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/readall.rb
AgeCommit message (Collapse)Author
2017-10-24Don't `require "thread"`.Markus Reiter
2017-10-08Clean up code style and remove `.rubocop_todo.yml`.Markus Reiter
2017-06-12Autocorrect Rubocop Style/SpecialGlobalVars.Mike McQuaid
2017-04-22readall: fix tapping taps without aliases.Mike McQuaid
Fixes https://github.com/caskroom/homebrew-cask/issues/32840. Fixes https://github.com/Homebrew/brew/issues/2529.
2017-04-22readall: check for shadowed aliases.Mike McQuaid
If an alias has the same name as a formula then weirdness will result so ensure this causes `readall` to fail.
2017-02-21Revert "audit: check for version aliases."ilovezfs
2017-02-21readall: check for shadowed aliases.Mike McQuaid
This will become particularly relevant when there’s a new version of a formula and the existing alias needs to be removed.
2016-09-21readall: do not require itself.Maxim Belkin
2016-08-22Use `ThreadError` to break loop.Markus Reiter
2016-07-09tap: run readall when tapping. (#396)Mike McQuaid
* readall: move readall logic to new class. * tap: run readall when tapping. This will prevent tapping an tap with syntax errors from causing issues for users. Fixes #58.