aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Contributions/cmd
AgeCommit message (Collapse)Author
2014-07-11brew-pull: use git to do the diff filteringJack Nagel
2014-07-10Deprecate some contributions.Mike McQuaid
This is just a starting point to start discussion. I think we have a few options with contributions: - Stop accepting them altogether and move the ones we need/use/support into core commands - Accept them on an unsupported basis and require they be added manually to the PATH - Actively support and fix bugs in them all Closes Homebrew/homebrew#30749. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-07-06Fix brew-aspell-dictionariesJack Nagel
2014-07-06Remove redundant "which git" guardsJack Nagel
There is always a git executable on PATH due to the git wrapper in Library/Contributions/cmd. The wrapper will notify the user if there is not a real git installed.
2014-07-05brew-pull: fix --installJack Nagel
2014-07-05Remove remaining references to "--fresh"Jack Nagel
This option was removed in 8cdf4d8ebf439eb9a9ffcaa0e455ced9459e1e41 because it did not do anything.
2014-07-05brew-pull: combine conditionalsJack Nagel
2014-07-05brew-pull: avoid the "var = ... rescue nil" danceJack Nagel
2014-07-05brew-pull: rescue a specific exceptionJack Nagel
2014-07-05brew-pull: use diff-tree and simplify diff parsingJack Nagel
2014-07-05brew-pull: let git-am attempt three-way merge if patch doesn't applyJack Nagel
2014-07-02Move constants so we don't have to load all of ENV to get themJack Nagel
2014-07-02Add missing requireJack Nagel
2014-06-30Use 1.8 has syntaxJack Nagel
Fixes Homebrew/homebrew#30558.
2014-06-28gist-logs: 1.8 compatJack Nagel
2014-06-28gist-logs: fix up encoding before passing the response body to OkJsonJack Nagel
Fixes Homebrew/homebrew#30519.
2014-06-25brew-versions: move to Contributions.Mike McQuaid
Eventually we'll move Contributions to a tap too. Closes Homebrew/homebrew#30298.
2014-06-22Move deprecated Formula class methods to compatJack Nagel
These have all been moved to Formulary.
2014-06-21deprecate brew-whichAdam Vandenberg
Closes Homebrew/homebrew#30311.
2014-06-20brew-test-bot: use Dir[] for globbingJack Nagel
2014-06-20brew-test-bot: use multiple argument form of systemJack Nagel
2014-06-20Revert "Removew brew-which"Misty De Meo
This reverts commit c0a32c81eb1b176448cd41866f2d22427c729522. Will add a deprecation notice and remove at a later point in time.
2014-06-20Removew brew-whichAdam Vandenberg
This functionality is better handled by brew list --versions and other official commands.
2014-06-19Only "extend self" once on the Homebrew moduleJack Nagel
2014-06-18brew-test-bot: don't pass formula name to fetch twiceJack Nagel
2014-06-15brew-test-bot: fix FormulaUnavailableError handlingJack Nagel
2014-06-15brew-test-bot: use path-limited diffJack Nagel
2014-06-15brew-test-bot: make git commands shell-safeJack Nagel
2014-06-15brew-test-bot: make test commands shell-safeJack Nagel
2014-06-15Migrate readallAdam Vandenberg
2014-06-14brew-test-bot: remove dead codeJack Nagel
2014-06-14Handle non-ASCII output encoded as ASCIIJack Nagel
Some tool involved in `brew install node` is emitting UTF-8 even though LANG and LC_ALL are unset. Since the external encoding is US-ASCII, we need to guard against bad data here.
2014-06-04brew-test-bot: strip bell/alert character.Mike McQuaid
2014-06-03String isn't enumerable in 1.9+Jack Nagel
2014-06-03Switch to "Current" Ruby framework symlinkJack Nagel
Closes Homebrew/homebrew#29795. Closes Homebrew/homebrew#29819.
2014-05-26Fix formula path usage in brew-gist-logsJack Nagel
Formula#path can no longer be a symlink.
2014-05-22fix HTTP 422 when gist-logs sends an empty fileAlex Burka
Closes Homebrew/homebrew#29476. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-05-21make `tests` an internal commandAdam Vandenberg
2014-05-17Move brew-unpack to coreJack Nagel
2014-05-17Remove brew-dirtyAdam Vandenberg
Replaced with `brew list --versions --multiple`.
2014-05-17Remove brew-grepAdam Vandenberg
2014-05-15remove empty fileAdam Vandenberg
2014-05-13add brew-bundle-dir contributed commandWil Moore III
Closes Homebrew/homebrew#27258. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-05-13remove commented-out line of codeAdam Vandenberg
2014-05-07brew-pull: update for new tap structureMisty De Meo
2014-04-30--config -> configAdam Vandenberg
2014-04-30brew-test-bot: handle failing devel requirements.Mike McQuaid
2014-04-29unpack: use correct constant scope for DATAJack Nagel
Formula::DATA only worked by accident of implementation; DATA during the build is actually Object::DATA, so we should mirror that here. This reverts commit b12444ba6e1ac1d596a70ff4c777d9386d0791ac.
2014-04-29brew-unpack: Handle new style :DATA patchesCharlie Sharpsteen
Instances of `IOPatch` created by `patch :DATA` are not affected by re-setting the `DATA` constant of the `Formula` instance. For these patches, we iterate through the `patchlist` and use `instance_variable_set` to attach data. A bit hacky, but `patchlist` has no write accessors so there isn't a clean way to modify patch contents.
2014-04-27Fix brew-readall for updated tap structureJack Nagel