aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Contributions
AgeCommit message (Collapse)Author
2010-09-08brew-audit - yet another path shortcut checkAdam Vandenberg
2010-09-08brew-audit - check inreplace block var nameAdam Vandenberg
2010-09-08Fix brew-leavesAdam Vandenberg
2010-09-08Document brew optionsAdam Vandenberg
2010-09-07brew-audit - catch more interpolation style issuesAdam Vandenberg
2010-09-07brew-audit: add check for git and fix warningsAdam Vandenberg
2010-08-21brew audit - Google Code homes w/o trailing slashAdam Vandenberg
Without a trailing slash, you redirect to the URL w/ a slash, so might as well have it there in the first place.
2010-08-21Document HOMEBREW_KEEP_INFOAdam Vandenberg
2010-08-20Document 'brew man' and add links to gems.Adam Vandenberg
2010-08-20Document HOMEBREW_DEBUG_PREFIXAdam Vandenberg
2010-08-17Tweak brew server - fixes #2191Adam Vandenberg
2010-08-16Document HOMEBREW_DEBUG_INSTALLAdam Vandenberg
2010-08-15Fix brew server and document.Adam Vandenberg
2010-08-15Document 'brew test' and sort external commands.Adam Vandenberg
2010-08-15Fix typo in manpage.Adam Vandenberg
2010-08-15Document 'brew missing'.Adam Vandenberg
2010-08-15Tweak brew missingAdam Vandenberg
2010-08-15brew audit - check for FileUtils.Adam Vandenberg
2010-08-15External command "brew missing"Adam Vandenberg
This will print installed brews that are missing deps.
2010-08-15brew audit - another man variationAdam Vandenberg
2010-08-13Add 'brew graph' external command.Adam Vandenberg
This command generates a GraphViz dot file from the Hoembrew dependency graph. $ brew install graphviz $ brew graph | dot -Tsvg -ohomebrew.svg $ open homebrew.svg
2010-08-11Reformat manpage slightlyAdam Vandenberg
2010-08-11Add "brew uses --installed"Adam Vandenberg
Passing --installed will limit the list to formulae that you have installed. Documented this and "brew deps --1" which limits the dependency list to one level down (direct dependencies).
2010-08-10brew audit - check used and documented optionsAdam Vandenberg
2010-08-10brew audit - most audits shouldn't happen against __END__Adam Vandenberg
2010-08-09brew audit - refactor text checks to make easier to testAdam Vandenberg
2010-08-09brew audit - flag use of DATA with no __END__Adam Vandenberg
2010-08-08brew audit - check for empty md5Adam Vandenberg
2010-08-08brew audit - more aggressive path shortcut suggestionsAdam Vandenberg
2010-08-08Move Pathname.starts_with? into PathnameAdam Vandenberg
2010-08-07brew-linkapps - expand the target path once.Adam Vandenberg
2010-08-07Update Bash completion scriptAdam Vandenberg
* Add external command completion * Add alias completion
2010-08-07Formatting in brew-switchAdam Vandenberg
2010-08-07Move ext command docs down to ext commands sectionAdam Vandenberg
2010-08-07Document external commands a bitAdam Vandenberg
2010-08-07Tweak brew install docsAdam Vandenberg
2010-08-07Document brew audit.Adam Vandenberg
2010-08-07Add sha1 to brew fetch and document commandAdam Vandenberg
2010-08-07brew audit - trailing whitespace detectionAdam Vandenberg
2010-08-07brew audit - look for aliases in depsAdam Vandenberg
2010-08-07Fix brew-serverAdam Vandenberg
2010-08-07Fix brew-readallAdam Vandenberg
2010-08-07Fix brew-auditAdam Vandenberg
2010-07-29Document brew info urlAdam Vandenberg
2010-07-25Allow HOMEBREW_EDITOR for non-project editing.Adam Vandenberg
If set, use "HOMEBREW_EDITOR" when editing a single file, or multiple files in the same folder. Note that this setting does not affect `brew edit`, since opening all of Homebrew at once requires an editor with proper project support.
2010-07-23Add depends_on spacing checks to brew_auditAdam Vandenberg
2010-07-12Use regex in brew-audit and add path concat test.Adam Vandenberg
2010-07-09Document 'brew install --HEAD'; sort ENV vars.Adam Vandenberg
2010-07-08Improved Subversion support.Adam Vandenberg
Homebrew will now use the svn binary pointed to by HOMEBREW_SVN if set, use a Homebrew-installed svn if present, finally falling back to the system-provided svn binary. If a formula (mplayer) requires a newer version of Subversion than what Leopard provides, it can use the "StrictSubversionDownloadStrategy" download strategy to warn the user. These changes also fix an issue with forcing exports not working on a stock Leopard subversion, but letting the user either specify a specific binary or install Subversion via Homebrew and pick that up instead.
2010-07-08External command "brew which"Adam Vandenberg
A work-in-progress command, "brew which" will show which versions of formulae you have installed based on what symlinks exist from HOMEBREW_PREFIX back into the Cellar. Thus, if you happen to have symlinks into two different versions of a brew in the Cellar (typically an error), both of those versions will be listed. This is a diagnostic command, but some of this code will be the basis for possible future better handling of multiple-versions-at-once.