aboutsummaryrefslogtreecommitdiffstats
path: root/Library
AgeCommit message (Collapse)Author
2010-08-17Tweak brew server - fixes Homebrew/homebrew#2191Adam Vandenberg
2010-08-16Use 1.9 compat syntax. Fixes Homebrew/homebrew#2192Adam Vandenberg
2010-08-16brew doctor - tweak multiple volume checkAdam Vandenberg
2010-08-16Document HOMEBREW_DEBUG_INSTALLAdam Vandenberg
2010-08-15Fix brew server and document.Adam Vandenberg
2010-08-15Make errors during link step more visible.Adam Vandenberg
2010-08-15Move method back to Pathname.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-11Tweak ARGV.usageAdam Vandenberg
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-11Tweak default templateAdam Vandenberg
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-10ENV.rb - add ENV.cflagsAdam Vandenberg
2010-08-10ENV.rb - style cleanupsAdam Vandenberg
2010-08-09brew doctor - add libiconv checkAdam Vandenberg
2010-08-09brew doctor - check all keg_only brewsAdam Vandenberg
Add a check to see if any keg_only brews are installed and linked into the Cellar. Doing this can cause installs of other formulae to fail.
2010-08-09fails_with_llvm will switch to GCC 4.2 by defaultAdam Vandenberg
2010-08-09brew doctor - add check for non-standard autoconfAdam Vandenberg
2010-08-09brew doctor - add check for /usr/bin/cc symlinks.Adam Vandenberg
If you symlink /usr/bin/cc to llvm, then Homebrew's "fails_with_llvm" checks are bypassed. So add a warning to "brew doctor".
2010-08-09Remove redundent line and reword comments slightly.Adam Vandenberg
2010-08-09brew doctor - X11 checkAdam Vandenberg
Tweak wording in X11 check and use the same X11 detection function as ENV.x11; also move that function into utils.
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-09Fix skip_clean :all to actually skip clean stepChris Hoffman
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-08-08Changing the magic &:downcase back to regular block.Brent Fitzgerald
Fixes Homebrew/homebrew#2089 Signed-off-by: Adam Vandenberg <flangy@gmail.com> (This is needed for 10.5 support.)
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-08Getting rid of pesky 'warning: parenthesize argument(s) for future version'Brent Fitzgerald
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-08-07brew-linkapps - expand the target path once.Adam Vandenberg
2010-08-07change behaviour of github_info to fallback sooner to mxcl/masterlukas
Fixes Homebrew/homebrew#1980 Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-08-07Resolve aliases in 'brew edit'.Adam Vandenberg
2010-08-07Make "lib/node" a real folder.Adam Vandenberg
Treat the "lib/node" folder like Python, Perl, etc. Create it as a real folder in HOMEBREW_PREFIX, so that package managers (npm) have a stable place to drop libs.
2010-08-07Homebrew now at version 0.70.7Adam Vandenberg
Changes in this version include: * Aliases are now defined by relative symlinks rather than in the formulae themselves. Many commands are faster now that they don't have to read every formula to find aliases. * "url" now supports the same features as "head", including ":using" and version specifiers for VCS systems. * Files and methods marked for deprecation in 0.7 have been removed. * The Formula DSL now supports "skip_clean :all" and "keg_only 'reason'"
2010-08-070.7 Remove deprecated brewkitAdam 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