aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Contributions
AgeCommit message (Collapse)Author
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.
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-07-03Allow user to override temp folder with HOMEBREW_TEMPAdam Vandenberg
2010-06-30External command 'brew test'.Adam Vandenberg
2010-06-29manpage updatesAdam Vandenberg
* Update title for ronn 0.7.3 * document --use-llvm * document --ignore-dependencies
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-09Add some dash-commands to bash completion scriptAdam Vandenberg
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
2010-06-07Remove 'generate' from bash completion.Adam Vandenberg
2010-05-30Tweak the bash completion script.Adam Vandenberg
* Add --config * Alphabetize various lists * Remove some local temp variables
2010-05-28Remove selflink script.Adam Vandenberg
Between the quick-install steps and other instructions on the Wiki, this "self-link" script is no longer needed (and no longer recommended.)
2010-04-28sort brew commands in zsh completion and add doctorDaniel Schauenberg
Signed-off-by: David Höppner <0xffea@gmail.com>
2010-04-06Add doctor to bash completion.Adam Vandenberg
2010-03-19Add log to bash completions.Adam Vandenberg
2010-03-09Bring zsh completion command list more up-to-dateDaniel Schauenberg
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-02-27Update bash completionsAdam Vandenberg
* Bring command list up-to-date * Subcommand completion now ignores switches
2010-01-30deps was missing from bash completionAdam Vandenberg