aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Contributions/examples
AgeCommit message (Collapse)Author
2010-08-07Formatting in brew-switchAdam 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-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-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.
2010-07-07brew fetch shouldn't try to checksum VCS checkoutsAdam Vandenberg
Fixes Homebrew/homebrew#1802
2010-07-04external command 'brew readall' that tries to import all brewsAdam Vandenberg
This can be useful for debugging when making changes to formula.rb, since that can cause problems across all formuale.
2010-07-04'brew fetch' now shows MD5Adam Vandenberg
2010-06-30External command 'brew test'.Adam Vandenberg
2010-06-23External command "brew audit <formula>"Adam Vandenberg
"brew audit <formula>" will check the given formula for a couple of known issues: * Is an explicit mirror being used for a SourceForge download path? * Is the commented-out cmake support present?
2010-06-17brew server - use search methodAdam Vandenberg
2010-06-16Convert server to external command and enhance.Adam Vandenberg
2010-06-16External command: upgradeAdam Vandenberg
Reinstalls out outdated brews. See: http://github.com/mxcl/homebrew/issues/issue/1324
2010-06-16Tweak usage for brew switchAdam Vandenberg
2010-06-16External command: brew switch formula versionAdam Vandenberg
This external command allows you to switch between installed versions of a formula. If you have multiple versions of a formula in your cellar, the standard "brew link" command will refuse to run. This new command "brew switch" tries to unlink all versions of the brew from the prefix, then links the specific requested version.
2010-06-15brew fetch --force to force redownload of tarballsAdam Vandenberg
External command "brew fetch" now allows -f|--force to remove an existing cached file before downloading.
2010-06-15External: 'brew fetch' downloads tarballs to cache.Adam Vandenberg
2010-06-13Man page for HomebrewChristopher Sexton
Includes: generator script, ronn source, manpage output Signed-off-by: Adam Vandenberg <flangy@gmail.com> Man page updates. * Generator command is now an external command with additional options * Added more brew commands * Tweaks and reformats
2010-06-09External command: brew linkappsAdam Vandenberg
This command looks for Cocoa Applications (.app bundles) in the prefix of all installed formulae. If any are found, they are linked into "~/Applications", the system-defined location for per-user apps.
2010-06-07Add sample external commands: dirty, leaves, optionsAdam Vandenberg
See: * http://github.com/mxcl/homebrew/issues/issue/1359 * http://github.com/mxcl/homebrew/issues/issue/1438