| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-05-26 | pluralize formulae in tap/untap | Adam Vandenberg | |
| Closes Homebrew/homebrew#28560. | |||
| 2014-03-29 | Always call Process.wait with an argument | Jack Nagel | |
| 2014-03-29 | Make sure we wait for the correct child | Jack Nagel | |
| Fixes Homebrew/homebrew#27962. | |||
| 2014-03-16 | which is supposed to return a pathname | Adam Vandenberg | |
| 2014-03-16 | return found path directly in which | Adam Vandenberg | |
| 2014-03-16 | utils.rb:which: bug fix | kynnjo | |
| Closes Homebrew/homebrew#27524. Signed-off-by: Adam Vandenberg <flangy@gmail.com> | |||
| 2014-03-13 | utils: return empty issues array when no API. | Mike McQuaid | |
| 2014-03-03 | utils: replace bright green with ANSI bold+green. | April Arcus | |
| There are two ways of outputting bright ANSI colors to the terminal - the ANSI codes 30-37 plus a bold code (most terminals render bold text with brighter colors, by convention), or the widely supported aixterm codes 90-97. Although the aixterm codes are more precise (disambiguating bold font from bright color), the ANSI bold+green enables compatibility with the popular [Solarized](https://github.com/altercation/solarized) color theme, which reassigns the "bright green" codepoint to a shade of gray. Closes Homebrew/homebrew#27125. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2014-02-28 | move scons helper to fileutils | Adam Vandenberg | |
| 2014-02-25 | add scons helper | Adam Vandenberg | |
| 2014-02-18 | Use standard curl progress output in verbose mode | Jack Nagel | |
| Closes Homebrew/homebrew#26818. | |||
| 2014-02-16 | Add helpful error message for authentication failures | Jack Nagel | |
| 2014-02-16 | Move error text and helper into error class | Jack Nagel | |
| 2014-02-16 | Add a more useful message when ratelimit is exceeded | Jack Nagel | |
| 2014-02-16 | Make GitHub::Error a RuntimeError to suppress backtrace | Jack Nagel | |
| 2014-02-16 | Handle GitHub API authentication failures | Jack Nagel | |
| 2014-02-16 | Extract error handling from GitHub.open | Jack Nagel | |
| 2014-02-13 | Use a more accurate method name and drop unhelpful block | Jack Nagel | |
| 2014-02-13 | Always print top-level issue URL | Jack Nagel | |
| 2014-02-13 | Delete comment that isn't relevant to this code anymore | Jack Nagel | |
| 2014-02-13 | Offload more filtering to the search API | Jack Nagel | |
| 2014-02-13 | Allow passing arbitrary qualifiers to issue search | Jack Nagel | |
| 2014-02-12 | Pass the string instead of reconstructing it from a regexp | Jack Nagel | |
| 2014-02-12 | Let the API do more work for us | Jack Nagel | |
| 2014-02-12 | Drop TODO that nobody has ever worked on | Jack Nagel | |
| 2014-02-12 | Drop unnecessary type check, we never pass a Formula instance | Jack Nagel | |
| 2014-02-12 | Return only open issues in GitHub.issues_for_formula | Jack Nagel | |
| 2014-02-08 | Use GitHub wrapper for private tap check | Jack Nagel | |
| 2014-02-08 | Pin GitHub module to v3 API | Jack Nagel | |
| 2014-02-08 | Switch to v3 search API | Jack Nagel | |
| 2014-02-08 | Prevent repeated warnings when GitHub API rate limit is exceeded | Jack Nagel | |
| 2014-02-08 | Preserve original backtrace when raising GitHub::Error | Jack Nagel | |
| 2014-02-08 | Raise only GitHub::Error from GitHub.open | Jack Nagel | |
| 2014-02-08 | Parse JSON early in GitHub module | Jack Nagel | |
| 2014-01-20 | utils: improve issue searching. | Mike McQuaid | |
| * issues_matching now returns an array * prints issues titles and URLs * find_pull_requests shows closed PRs if no matching PRs are open Closes Homebrew/homebrew#26032. | |||
| 2014-01-16 | Only search open pull requests, not closed | Misty De Meo | |
| Refs Homebrew/homebrew#25962. | |||
| 2014-01-10 | Escape issue search string | Jack Nagel | |
| Fixes Homebrew/homebrew#25779. | |||
| 2013-12-14 | Update docs, comment mxcl/homebrew refs. | Mike McQuaid | |
| 2013-12-13 | fix repo URL for brew search | Adam Vandenberg | |
| Closes Homebrew/homebrew#25192. | |||
| 2013-11-28 | typo | Adam Vandenberg | |
| 2013-10-25 | Add HOMEBREW_NO_GITHUB_API env var. | David MacMahon | |
| This patch allows users to "opt out" of using the GitHub API altogether by setting the HOMEBREW_NO_GITHUB_API environment variable. The value of the environment variable does not matter (it can even be empty!). For Bash/ZSH: export HOMEBREW_NO_GITHUB_API=1 Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2013-10-22 | Avoid comparing MacOS.version to floats | Jack Nagel | |
| 2013-10-18 | Rename MacOS to OS::Mac | Jack Nagel | |
| 2013-09-17 | move paths to utils | Adam Vandenberg | |
| 2013-08-30 | Use system path for more tools, for Linux compat. | Dan Hughes | |
| Closes Homebrew/homebrew#22196. Signed-off-by: Adam Vandenberg <flangy@gmail.com> | |||
| 2013-08-19 | Use File::PATH_SEPARATOR globally instead of ':' | Amos Wenger | |
| On Unix, the path separator is ':', whereas on Windows, it is ';'. This is the first of a series of patch to bring macbrew's and winbrew's codebases closer together. The main places the magic constant ':' was being used were: - the $PATH environment variable - CMAKE-related environment variables - pkg-config related environment variables Closes Homebrew/homebrew#21921. Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
| 2013-08-10 | Allow specifying a custom PATH for which method | Jack Nagel | |
| Closes Homebrew/homebrew#21794. | |||
| 2013-08-02 | Always load net/https before referencing related constants | Jack Nagel | |
| I put this require inside the method body, because eager-loading net/https is slow compared to the rest of Homebrew, and utils.rb is loaded for each `brew` invocation. It's probably worth breaking up global.rb a bit, to reduce the amount of code we are loading unnecessarily, but hopefully also to make inter-file dependencies a bit more obvious. Fixes Homebrew/homebrew#21617. | |||
| 2013-07-15 | GitHub API access may result in SSL errors | Jack Nagel | |
| Closes Homebrew/homebrew#21216. | |||
| 2013-07-12 | Move inreplace off of Object | Jack Nagel | |
| Closes Homebrew/homebrew#21163. | |||
