<feed xmlns='http://www.w3.org/2005/Atom'>
<title>brew/bin, branch 0.9.4</title>
<subtitle>🍺 The missing package manager for macOS</subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/'/>
<entry>
<title>Replace sceaga/homebrew with mistydemeo/tigerbrew</title>
<updated>2012-12-28T01:55:15+00:00</updated>
<author>
<name>Misty De Meo</name>
</author>
<published>2012-12-28T01:54:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=1bce10ad6caa96614a770e1e1de86ffb25215e42'/>
<id>1bce10ad6caa96614a770e1e1de86ffb25215e42</id>
<content type='text'>
@sceaga has discontinued his homebrew fork, so tigerbrew is now PPC/
Tiger users' best bet.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
@sceaga has discontinued his homebrew fork, so tigerbrew is now PPC/
Tiger users' best bet.
</pre>
</div>
</content>
</entry>
<entry>
<title>`brew -c1` one line configuration summary</title>
<updated>2012-08-31T19:48:48+00:00</updated>
<author>
<name>Max Howell</name>
</author>
<published>2012-08-31T19:33:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=3935a34048b78661fdf8c07f02c3d3b1fe621ff7'/>
<id>3935a34048b78661fdf8c07f02c3d3b1fe621ff7</id>
<content type='text'>
At your option: `brew --config -1`.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
At your option: `brew --config -1`.</pre>
</div>
</content>
</entry>
<entry>
<title>If exception has no message raise again</title>
<updated>2012-08-29T16:41:37+00:00</updated>
<author>
<name>Max Howell</name>
</author>
<published>2012-08-29T00:14:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=2cecc3bd517d8d411ea17bbf14c988b6478005e2'/>
<id>2cecc3bd517d8d411ea17bbf14c988b6478005e2</id>
<content type='text'>
Shows full backtrace, which is useful. Now blank "raise" statements are the equivalent of admitting programmer error. The backtrace will be useful.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Shows full backtrace, which is useful. Now blank "raise" statements are the equivalent of admitting programmer error. The backtrace will be useful.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make `brew --prefix` very fast</title>
<updated>2012-08-29T16:41:36+00:00</updated>
<author>
<name>Max Howell</name>
</author>
<published>2012-08-28T13:52:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=0ac3e83a7abbf0fe06206d4da145f2cd724b2a87'/>
<id>0ac3e83a7abbf0fe06206d4da145f2cd724b2a87</id>
<content type='text'>
Because people use this in .bash_profile etc. We should be as fast as possible.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Because people use this in .bash_profile etc. We should be as fast as possible.
</pre>
</div>
</content>
</entry>
<entry>
<title>Much better CTRL-C handling</title>
<updated>2012-08-29T16:41:35+00:00</updated>
<author>
<name>Max Howell</name>
</author>
<published>2012-08-22T19:50:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=20ce16a3ffd6485177121422734be0b7bba5c591'/>
<id>20ce16a3ffd6485177121422734be0b7bba5c591</id>
<content type='text'>
Let's not show weird error messages when user interrupts during various stages of brew initialization.

Tested by doing `for x in $(brew search); do brew install $x; done` and pressing CTRL-C at random short intervals.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Let's not show weird error messages when user interrupts during various stages of brew initialization.

Tested by doing `for x in $(brew search); do brew install $x; done` and pressing CTRL-C at random short intervals.
</pre>
</div>
</content>
</entry>
<entry>
<title>brew: downcase arg before sending to Homebrew</title>
<updated>2012-08-23T00:55:27+00:00</updated>
<author>
<name>Misty De Meo</name>
</author>
<published>2012-08-23T00:55:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=78dcafaa10fa37b07bb519f3b668a5c761376abb'/>
<id>78dcafaa10fa37b07bb519f3b668a5c761376abb</id>
<content type='text'>
Fixes a case where brew would find commands with wrongly-capitalized
user input on case-insensitive systems, then error out with a confusing
message when an invalid method was sent to Homebrew. e.g.:

&gt; brew Update
Error: undefined method `Update' for Homebrew:Module</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes a case where brew would find commands with wrongly-capitalized
user input on case-insensitive systems, then error out with a confusing
message when an invalid method was sent to Homebrew. e.g.:

&gt; brew Update
Error: undefined method `Update' for Homebrew:Module</pre>
</div>
</content>
</entry>
<entry>
<title>Don't output Ruby warnings</title>
<updated>2012-08-06T17:06:36+00:00</updated>
<author>
<name>Max Howell</name>
</author>
<published>2012-08-06T17:06:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=97b841c1d5c1f84c6c0e1a8f73a75bb2252a5b3c'/>
<id>97b841c1d5c1f84c6c0e1a8f73a75bb2252a5b3c</id>
<content type='text'>
We don't want bug reports about this crap, even though the user REALLY should listen to the warning message. What actually happens is they blame us instead.

This kind of warning in particular:

warning: Insecure world writable dir /usr/local/bin in PATH
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We don't want bug reports about this crap, even though the user REALLY should listen to the warning message. What actually happens is they blame us instead.

This kind of warning in particular:

warning: Insecure world writable dir /usr/local/bin in PATH
</pre>
</div>
</content>
</entry>
<entry>
<title>Make --version/--verbose slightly less confusing.</title>
<updated>2012-07-23T21:27:50+00:00</updated>
<author>
<name>Adam Vandenberg</name>
</author>
<published>2012-07-23T21:27:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=7a7e3b5f7c81c43dd9dcec1574ce285082ee08ce'/>
<id>7a7e3b5f7c81c43dd9dcec1574ce285082ee08ce</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace /usr/bin/ruby with full Framework path</title>
<updated>2012-06-01T14:24:25+00:00</updated>
<author>
<name>Misty De Meo</name>
</author>
<published>2012-05-20T00:57:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=7af4622b0f06d0f505f4e57ea4f65b6e8626e2cc'/>
<id>7af4622b0f06d0f505f4e57ea4f65b6e8626e2cc</id>
<content type='text'>
Rationale: some users insist on replacing the /usr/bin/ruby symlink
to point to another ruby on their system, which may break homebrew.
Use the full Framework path instead, which is less likely to be tampered with.

This also reorganizes the brew --config checks to reflect the different path.

Fixes Homebrew/homebrew#12009.

Closes Homebrew/homebrew#12333.

Signed-off-by: Misty De Meo &lt;mistydemeo@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Rationale: some users insist on replacing the /usr/bin/ruby symlink
to point to another ruby on their system, which may break homebrew.
Use the full Framework path instead, which is less likely to be tampered with.

This also reorganizes the brew --config checks to reflect the different path.

Fixes Homebrew/homebrew#12009.

Closes Homebrew/homebrew#12333.

Signed-off-by: Misty De Meo &lt;mistydemeo@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Unify 'which' and which_s' utility methods</title>
<updated>2012-05-08T02:05:47+00:00</updated>
<author>
<name>Jack Nagel</name>
</author>
<published>2012-05-08T01:32:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=68124d481f7938f3bf280fb92d370a0de9a9b80f'/>
<id>68124d481f7938f3bf280fb92d370a0de9a9b80f</id>
<content type='text'>
'which' only returns a Pathname or nil, and doesn't care about anything
sent to stderr, so just silence it by default and combine the two
methods.

Closes Homebrew/homebrew#12115.

Signed-off-by: Jack Nagel &lt;jacknagel@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
'which' only returns a Pathname or nil, and doesn't care about anything
sent to stderr, so just silence it by default and combine the two
methods.

Closes Homebrew/homebrew#12115.

Signed-off-by: Jack Nagel &lt;jacknagel@gmail.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
