| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-03-14 | Remove unused argument | Jack Nagel | |
| 2015-01-05 | Emit warning when no editor is set | Jack Nagel | |
| Closes #34647. | |||
| 2015-01-05 | utils: install_gem_setup_path! now checks PATH. | Mike McQuaid | |
| Check the executable is present to give a better error message if it isn't. Closes #35541. | |||
| 2015-01-03 | Remove readline and zlib hacks | Jack Nagel | |
| 2015-01-02 | utils: always set PATH in install_gem_setup_path. | Mike McQuaid | |
| 2015-01-02 | utils: tweak install_gem_setup_path to not warn. | Mike McQuaid | |
| If the `Gem.user_dir/bin` is not already in the PATH it'll complain unnecessarily (as we add it to the PATH ourselves) so just add it to the PATH before running the install. | |||
| 2015-01-02 | Add Homebrew.install_gem_setup_path! function. | Mike McQuaid | |
| This uses the logic from tests.rb in man.rb too so that this can be shared in a few places. | |||
| 2014-12-06 | Remove {start,stop}doc as we're using Yard now. | Mike McQuaid | |
| 2014-11-20 | Friendlier error message for EOFError raised inside Net::HTTP | Jack Nagel | |
| Closes #34312. Closes #34358. | |||
| 2014-10-05 | Shows time since last commit in brew config | Tim D. Smith | |
| Closes #32936. | |||
| 2014-09-24 | Generate RDoc documentation. | Mike McQuaid | |
| This is currently still very messy and we probably want to work out the best way to declare what parts of our DSL/what files are "public". Still, even if this is a WIP I'd rather get something committed sooner rather than later and start iterating on this as a replacement for `example_formula.rb` and the formula cookbook. To test: ```bash cd $(brew --prefix)/Library/Homebrew && \ rdoc formula.rb requirement.rb utils.rb &&\ open doc/index.html ``` Closes #32470. | |||
| 2014-09-20 | Don't to_s the cmd parameter in Homebrew.system | Jack Nagel | |
| 2014-09-20 | Stop invoking the editor through an interactive shell | Jack Nagel | |
| This was added in d2ecfb9 / #12784 to fix a bug repotted in #12779, but at that time we were invoking the editor via `system` rather than `exec`. Now we are using exec, and running it through an interactive shell seems to cause other problems, for example, emacs does not suspend/resume properly. Fixes #32328. | |||
| 2014-09-18 | Pass command and arg list into ErrorDuringExecution constructor | Jack Nagel | |
| 2014-09-04 | Hack around Zlib constant conflict | Jack Nagel | |
| 2014-08-04 | utils: use the $stderr global variable. | Federico Bond | |
| For easier capturing. Closes #31303. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2014-07-20 | Simplify onoe | Jack Nagel | |
| 2014-07-19 | Passing an empty array to puts prints nothing | Jack Nagel | |
| 2014-07-18 | exec_editor with no arguments should not silently succeed | Jack Nagel | |
| 2014-07-06 | nostdout doesn't need to capture output | Jack Nagel | |
| 2014-07-06 | Let File.expand_path also do the join | Jack Nagel | |
| 2014-07-06 | Check File.file? first to avoid second stat() | Jack Nagel | |
| 2014-07-06 | Just use each since we're returning from inside the block | Jack Nagel | |
| 2014-07-06 | Expand ~ in PATH entries | Jack Nagel | |
| 2014-07-05 | Add popen wrapper that does not invoke the shell | Jack Nagel | |
| 2014-06-30 | Add a method for getting the repo HEAD | Jack Nagel | |
| 2014-06-24 | Fix uninitialized constant error in GitHub.open | Jack Nagel | |
| The error handling depends on side effects of `require "net/https"`, so it should be wrapped in an explicit begin block. cf. #30407. | |||
| 2014-06-12 | Linuxbrew: Use xdg-open | Shaun Jackman | |
| Closes #29817. Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
| 2014-06-10 | "exit $?" raises TypeError on Ruby 2.0 | Jack Nagel | |
| 2014-06-05 | Find vim on the path | James Wald | |
| If vim is on the path, it will be used instead of `/usr/bin/vim`. Closes #29885. Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
| 2014-05-26 | pluralize formulae in tap/untap | Adam Vandenberg | |
| Closes #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 #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 #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 #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 #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 | |
