aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
AgeCommit message (Collapse)Author
2013-05-15uninstall: stop assuming kegs always map to formulaeJack Nagel
2013-05-15cleanup: enable prune during dry-run modeJack Nagel
Closes #19826.
2013-05-15prune: add dry-run modeJack Nagel
2013-05-15cleanup: cleanup_all => cleanup_cellarJack Nagel
2013-05-15cleanup: refactor cleanup_cacheJack Nagel
2013-05-15cleanup: rename variableJack Nagel
2013-05-15cleanup: refactor cleanup_formulaJack Nagel
2013-05-15cleanup: only map dirs to kegs onceJack Nagel
2013-05-15cleanup: use Pathname#rmtree instead of FileUtilsJack Nagel
2013-05-15cleanup: use subdirs, avoid .directory? checksJack Nagel
2013-05-15cleanup: remove redundant conditionJack Nagel
If f.installed? is true, f.rack.directory? will always be true as well.
2013-05-15cleanup: rename method for consistencyJack Nagel
2013-05-15cleanup: use early return rather than method-spanning conditionalJack Nagel
2013-05-15cleanup: factor out unqualified cleanup codeJack Nagel
2013-05-15Methods that end in _formula should only accept a formulaJack Nagel
2013-05-14audit: fix version audit for Version subclassesJack Nagel
The version isn't redundant if a subclass of Version is specified.
2013-05-14outdated: always do comparisons with a Formula as the receiverJack Nagel
It is possible for the object returned by Formula#version to be a subclass of Version with special behavior, so we want to use that for the comparison.
2013-05-11Use Hash#each_value rather than discarding keyJack Nagel
2013-05-10info: simplify keg listingJack Nagel
2013-05-10deps: fix --1 outputJack Nagel
Fixes #17550. Closes #19668.
2013-05-10info: improve dependency listingJack Nagel
2013-05-07doctor: update ruby version checkJack Nagel
2013-05-07doctor: update git version checkJack Nagel
2013-05-07audit: only generate aliases list onceJack Nagel
2013-05-07audit: only set up the build environment onceJack Nagel
2013-05-02info: re-raise on blacklist missJack Nagel
2013-05-02--env: show HOMEBREW_CC in superenvAdam Vandenberg
Closes #18247.
2013-04-29info: try blacklist for unknown formula namesAdam Vandenberg
Closes #17399.
2013-04-27Allow `brew versions` to work with underspecified formulaeJack Nagel
2013-04-26audit: fix interpolation checkJack Nagel
Fixes #19363.
2013-04-25doctor: don't shell out in coreutils checkMisty De Meo
2013-04-25doctor: add default-names findutils checkMisty De Meo
Fixes #19265.
2013-04-22audit: warn about top-level methodsJack Nagel
2013-04-16Add tests for FormulaPin and simplify implementationJack Nagel
2013-04-14Avoid repeated interpolation here tooJack Nagel
2013-04-14Only prune taps if taps exist.Adam Vandenberg
Closes #19192.
2013-04-13New visualization for brew deps --treeJaime Marquínez Ferrándiz
Closes #18835. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-04-13Run `tap --repair` as part of `prune`Jack Nagel
And by extension, `cleanup`. Fixes #18658.
2013-04-12doctor: 'raring' => 'ready'Jack Nagel
It was pointed out that 'raring' is a rare word can be confusing to non-native speakers. Closes #18659, see that for details.
2013-04-12doctor: consolidate directory access checksJack Nagel
Also include a writability check for lib. Closes #18571.
2013-04-11versions: work for tapped formulaeJiang Xin
brew versions is hardcoded to cd to HOMEBREW_REPOSITORY before running git, and as such fails to report previous versions for any formulae from a tapped repository. Add two new private methods repository and entry_name to replace the hardcoded HOMEBREW_REPOSITORY and formula path, and brew versions work for both builtin and tapped formulae. Closes #12356. Closes #19069. Reported-by: Misty De Meo <mistydemeo@gmail.com> Suggested-by: Jack Nagel <jacknagel@gmail.com> Signed-off-by: Jiang Xin <worldhello.net@gmail.com> Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-04-11doctor: suggest `brew update` in outdated warningGeoff Petrie
Closes #19106. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-04-10link: eliminate naked rescueJack Nagel
2013-04-10Remove last use of deprecated Formula#recursive_depsJack Nagel
Fixes #19107.
2013-04-07Unify indentation of access modifiersJack Nagel
These are class method calls, not some special keyword, and should be indented as such (also all standard Ruby indenters do this).
2013-04-06audit: clean up some regexpsJack Nagel
2013-04-06audit: check build-time deps programmaticallyJack Nagel
2013-04-06audit: rescue only FormulaUnavailableErrorJack Nagel
2013-04-06audit: clean up URL auditsJack Nagel
2013-04-06brew audit: find *.github.com pagesJaime Marquínez Ferrándiz
And suggest changing them to *.github.io Closes #19012. Signed-off-by: Adam Vandenberg <flangy@gmail.com>