| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-01-04 | Remove unused assignment | Jack Nagel | |
| 2015-01-04 | Make active_spec protected | Jack Nagel | |
| 2015-01-04 | Decouple LocalBottleDownloadStrategy from CurlDownloadStrategy | Jack Nagel | |
| 2015-01-04 | Extract non-curl parts of CurlDownloadStrategy into a base class | Jack Nagel | |
| 2015-01-04 | Remove unused argument | Jack Nagel | |
| 2015-01-04 | Doc most DSL methods as write-only | Jack Nagel | |
| The public readers for these attributes are on the instance, not the class. | |||
| 2015-01-04 | Fix markup | Jack Nagel | |
| 2015-01-04 | Top-level DSL methods only manipulate the stable spec | Jack Nagel | |
| 2015-01-04 | Checkout outdatedness in `brew upgrade <formula>` | Jack Nagel | |
| Fixes Homebrew/homebrew#35523. | |||
| 2015-01-04 | audit: also run `brew style` on `--strict`. | Mike McQuaid | |
| Closes Homebrew/homebrew#35465. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2015-01-04 | style: run Rubocop on formulae (new command) | Mike McQuaid | |
| 2015-01-04 | tests.rb: use Homebrew.failed to send exit code. | Mike McQuaid | |
| 2015-01-04 | brew.rb: return exit code from internal commands. | Mike McQuaid | |
| 2015-01-04 | Use more https in urls and updated some lost links | Viktor Szakats | |
| Closes Homebrew/homebrew#35531. Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
| 2015-01-04 | Explicitly pass formulae to outdated_brews | Jack Nagel | |
| 2015-01-03 | Remove unnecessary encoding comments | Jack Nagel | |
| These files do not contain any non-ASCII characters. | |||
| 2015-01-03 | Use more https links and some link updates along the way | Viktor Szakats | |
| Closes Homebrew/homebrew#35529. Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
| 2015-01-03 | Remove readline and zlib hacks | Jack Nagel | |
| 2015-01-03 | Load formulae into private namespace | Jack Nagel | |
| 2015-01-03 | fixtures add test.ico | Xu Cheng | |
| Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
| 2015-01-03 | brew irb --help replaced with --examples | Baptiste Fontaine | |
| The --help flag is intercepted by brew.rb and prints the global usage string. `irb` is never called when `brew irb --help` is executed. Closes Homebrew/homebrew#35466. Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
| 2015-01-03 | Get rid of mixed operator styles | Jack Nagel | |
| 2015-01-03 | replace fixture png to 8x8 in size and rgb scale color | Xu Cheng | |
| Closes Homebrew/homebrew#35456. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2015-01-02 | Maintainer-Guidelines: basic touch-up | Dominyk Tiller | |
| * Moved the `pip` homepage to something that points more directly at `pip`. * Adds a note on `test do`. All the maintainers and the bot check the existence of such things these days, but I guess if anyone stumbles across the document it’s useful to say. * GiX is formally dead, and has two blessed forks. * Typo on contributor. Closes Homebrew/homebrew#35467. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 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. | |||
| 2015-01-02 | audit: system check fixed for multiple arguments | Baptiste Fontaine | |
| Closes Homebrew/homebrew#35459. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2015-01-02 | formula_versions: ignore another exception. | Mike McQuaid | |
| 2015-01-02 | test-bot: do not --cleanup outside CI. | Shaun Jackman | |
| Closes Homebrew/homebrew#35424. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2015-01-02 | pull: fix tap URL regex for devel/head-only. | Mike McQuaid | |
| 2015-01-01 | LICENSE: bump to 2015 | Dominyk Tiller | |
| It's that most glorious time of the year: When everyone on Github bumps their license dates to cover yet another year ahead. Closes Homebrew/homebrew#35433. Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
| 2015-01-01 | ID3 tags stripped from MP3 test fixture | Baptiste Fontaine | |
| Closes Homebrew/homebrew#35427. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2015-01-01 | Avoid formula lookup when we know it will fail | Jack Nagel | |
| Formulary.loader_for cannot raise exceptions, as canonical_name must work for nonexistent formulae. However, we can skip the constant lookup and a redundant file existence check by returning a loader that raises immediately in #get_formula. | |||
| 2015-01-01 | Get rid of StandardLoader class | Jack Nagel | |
| 2015-01-01 | minimal MP3 test file added | Baptiste Fontaine | |
| Closes Homebrew/homebrew#35417. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2014-12-31 | Re-raise NameError when it doesn't match our constant | Jack Nagel | |
| 2014-12-31 | Check file existence instead of rescuing LoadError | Jack Nagel | |
| 2014-12-31 | Stop rescuing NameError | Jack Nagel | |
| This clause originated in 4a36c56ac7b36904712aa472b9bd50ef1b0c80d3, attempting to catch NameErrors raised by const_defined? calls earlier in the method body. Those const_defined? calls have since been moved out of the body of the begin block. Stop rescuing NameError here, which will make true programming errors in formulae easier to debug. | |||
| 2014-12-31 | Add Rubocop style file. | Loic Nageleisen | |
| Closes Homebrew/homebrew#33219. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2014-12-31 | Don't attempt to detect version if URL is not set | Jack Nagel | |
| 2014-12-31 | Handle newer ruby versions correctly in config output | Jack Nagel | |
| Since Ruby 2.1, patch releases take the form "2.x.y" rather than "2.x.y-pnum". | |||
| 2014-12-30 | Use block-form of File.open | Jack Nagel | |
| 2014-12-30 | Log build environment on failure | Jack Nagel | |
| 2014-12-30 | Always dump full configuration | Jack Nagel | |
| 2014-12-30 | brew-config: always show XCode/CLT state | Xu Cheng | |
| Closes Homebrew/homebrew#33860. Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
| 2014-12-29 | Move exception text into exception object | Jack Nagel | |
| 2014-12-29 | Preserve backtrace for download errors | Jack Nagel | |
| 2014-12-29 | Preserve backtrace from original exception | Jack Nagel | |
| 2014-12-29 | Remove duplicated logic from FromUrlLoader | Jack Nagel | |
