| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2010-10-30 | fix warnings: ambiguous splat | Jamie Macey | |
| Signed-off-by: Adam Vandenberg <flangy@gmail.com> | |||
| 2010-10-30 | fix warnings: splat is redundant for puts | Jamie Macey | |
| Signed-off-by: Adam Vandenberg <flangy@gmail.com> | |||
| 2010-10-30 | `brew log` should show complete Git log if no formulae are specified | Michael Dippery | |
| Signed-off-by: Adam Vandenberg <flangy@gmail.com> | |||
| 2010-10-25 | All vcs strategies support cached_download | Adam Vandenberg | |
| 2010-10-17 | Add remove --force | Adam Vandenberg | |
| 2010-10-17 | remove - show message when multiple versions exist | Adam Vandenberg | |
| 2010-10-07 | Consider outdated kegs in brew uses --installed | Kevin Ballard | |
| Signed-off-by: Adam Vandenberg <flangy@gmail.com> | |||
| 2010-10-06 | Tweak display of missing sha | Adam Vandenberg | |
| 2010-10-01 | add Xcode version to brew --config | Adam Vandenberg | |
| 2010-10-01 | brew-log accept `git log` options & multiple brews | Tianyi Cui | |
| 2010-09-30 | Fix brew edit foo | Adam Vandenberg | |
| 2010-09-29 | Use %w quoting in ENV list | Adam Vandenberg | |
| 2010-09-29 | Tweak unknown command message | Adam Vandenberg | |
| 2010-09-29 | refactor compiler messages | Adam Vandenberg | |
| 2010-09-07 | Bump Xcode recommendation to 3.2.3 | Adam Vandenberg | |
| 2010-09-06 | Add ruby target to --config | Adam Vandenberg | |
| 2010-08-23 | Remove HOMEBREW_CACHE from "brew --config" | Adam Vandenberg | |
| HOMEBREW_CACHE isn't really helpful in diagnosing problems, and some people don't like their username / home folder going into bug reports on the web, so let's take it out. | |||
| 2010-08-15 | Tweak 'report error' message. | Adam Vandenberg | |
| 2010-08-13 | Add 'brew deps --all' | Adam Vandenberg | |
| 2010-08-11 | Add "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-11 | Fix uses/deps for Leopard | Adam Vandenberg | |
| 2010-08-09 | Add shortcut 'brew dr'. | Adam Vandenberg | |
| 2010-08-07 | Resolve aliases in 'brew edit'. | Adam Vandenberg | |
| 2010-08-07 | 0.7 Remove deprecated make command | Adam Vandenberg | |
| 2010-08-07 | ARGV - rename method that conflicts with optparse | Adam Vandenberg | |
| optparse adds an "options" method to ARGV, and so does Homebrew. Rename this method (and remove optparse blocking script) so that Homebrew plays nicer with external Ruby software. This fixes the issue where "gem install thin" would break "brew server", for instance. | |||
| 2010-08-07 | add URLs to brew info | Adam Vandenberg | |
| 2010-08-07 | Fix brew info | Adam Vandenberg | |
| 2010-08-07 | Significantly simpler `brew uses` and `brew deps` | Max Howell | |
| Partly simpler because the output is less pretty. But I think the output is now more useful for other tools. And comma separated lists aren't particularly human-readable IMO either. | |||
| 2010-08-07 | Show changed examples on update [telemachus] | Adam Vandenberg | |
| * Also move updater output into the class itself | |||
| 2010-08-07 | Automatically enable external `brew` commands. | Martin Kühl | |
| * Add path to external command examples to PATH. * Only add them to PATH from inside Homebrew. Signed-off-by: Adam Vandenberg <flangy@gmail.com> * Move external commands path down near check | |||
| 2010-07-29 | Add name to brew info url and remove external script | Adam Vandenberg | |
| 2010-07-25 | Fix brew info --all | Adam Vandenberg | |
| 2010-07-21 | brew deps --1 does not recurse | Adam Vandenberg | |
| 2010-07-18 | brew.h info takes a formula parameter rather than a string | Max Howell | |
| * Preference is for commands to take instantiated formulae as parameters rather than formula names, so alias resolution can be centralized. | |||
| 2010-07-14 | When outputting a `brew install -vd` insert the formula name | Kyle Fuller | |
| Signed-off-by: Adam Vandenberg <flangy@gmail.com> | |||
| 2010-07-13 | Add command "brew --env" | Adam Vandenberg | |
| "brew --env" will set up a build environment and then dump certain ENV variables (CC, CXX, LD, CFLAGS, CXXFLAGS, MAKEFLAGS). If any of CC, CXX, LD are symlinks, now also output the target compiler. (Typically these will be symlinks from eg /usr/bin/cc to /usr/bin/gcc-4.2). This is a diagnostic command which may be merged into --config, turned into an external command, or removed if it doesn't turn out to be useful. | |||
| 2010-07-08 | Remove un-needed 'unless' in brew update | Adam Vandenberg | |
| 2010-07-03 | Move data into updater class | Adam Vandenberg | |
| 2010-07-02 | Remove $PATH from --config and build dumps. | Adam Vandenberg | |
| While it is useful to be able to see the user's path in bug reports, it is perhaps slightly too intrusive to post this without the user's permission. A path can have usernames or other project sensitive information, and several Homebrew users were editing their bug reports to omit this information. `brew doctor` will still report on the path issues that we typically care about, so dropping automatic posting of PATH. | |||
| 2010-06-23 | Extract "brew_install". | Adam Vandenberg | |
| This was supposed to go in with the "brew-upgrade" external command, but must have been lost in the merge. | |||
| 2010-06-22 | Add fink/macports support to 'brew search'. | Adam Vandenberg | |
| 2010-06-17 | Extract search_brews method | Adam Vandenberg | |
| 2010-06-16 | Move code to find outdated brew list | Adam Vandenberg | |
| 2010-06-15 | Reduce nesting in 'brew up'. | Adam Vandenberg | |
| 2010-06-15 | Modify brew update to show if any formulae were removed. | Trevor Stevens | |
| 2010-06-10 | Failures during ./configure should mention config.log. | Adam Vandenberg | |
| 2010-06-07 | Support external commands | Adam Vandenberg | |
| Homebrew will now look for external commands that are +x on PATH, named as "brew-<cmd>" or "brew-<cmd>.rb" * Shell scripts are exec'd with some HOMEBREW variables set in the ENV. * Ruby scripts are require'd directly. See: http://wiki.github.com/mxcl/homebrew/external-commands | |||
| 2010-06-07 | Remove silly concatenation. | Adam Vandenberg | |
| 2010-06-07 | Tweak the bin/brew command selector a bit. | Adam Vandenberg | |
| * Move 'brew doctor' above both unknown command blocks and then... * Merge unknown command blocks. (This is cleanup for supporting external brew commands.) | |||
| 2010-06-03 | Fix typo in comment. | Adam Vandenberg | |
