<feed xmlns='http://www.w3.org/2005/Atom'>
<title>brew/Library/Homebrew/os/mac/ruby_keg.rb, branch 1.3.6</title>
<subtitle>🍺 The missing package manager for macOS</subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/'/>
<entry>
<title>os/mac: Delete old cctools-based relocation code.</title>
<updated>2016-09-20T21:48:21+00:00</updated>
<author>
<name>William Woodruff</name>
</author>
<published>2016-09-20T21:37:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=d16e4a782efb217070159bfb182cc10f8b68a426'/>
<id>d16e4a782efb217070159bfb182cc10f8b68a426</id>
<content type='text'>
Disable check for $HOMEBREW_NO_RUBY_MACHO now that no alternative exists.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Disable check for $HOMEBREW_NO_RUBY_MACHO now that no alternative exists.
</pre>
</div>
</content>
</entry>
<entry>
<title>rubocop --auto-correct all hash-rocket usage.</title>
<updated>2016-09-17T15:14:13+00:00</updated>
<author>
<name>Mike McQuaid</name>
</author>
<published>2016-09-17T14:32:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=3982950e6106d45811a396a6a7478eeeee2817d7'/>
<id>3982950e6106d45811a396a6a7478eeeee2817d7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>os/mac: Update ruby-macho calls for compatibility with 0.2.5.</title>
<updated>2016-08-11T20:34:49+00:00</updated>
<author>
<name>William Woodruff</name>
</author>
<published>2016-08-07T17:37:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=97a66aa513f515472b3c36256f4624060d5e365c'/>
<id>97a66aa513f515472b3c36256f4624060d5e365c</id>
<content type='text'>
Closes #656.

Signed-off-by: Martin Afanasjew &lt;martin@afanasjew.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #656.

Signed-off-by: Martin Afanasjew &lt;martin@afanasjew.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>os/mac/ruby_keg: improve error reporting</title>
<updated>2016-08-10T15:56:46+00:00</updated>
<author>
<name>Martin Afanasjew</name>
</author>
<published>2016-08-10T15:56:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=06fe347de97975dc01e726f87bf07a56a6fb713e'/>
<id>06fe347de97975dc01e726f87bf07a56a6fb713e</id>
<content type='text'>
A failure to change a dylib ID or install name would previously cause a
rather cryptic error message, that didn't include the name of the file
that caused the failure, unless `--debug` was specified. Make sure to
output this information in all cases before re-raising the exception.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A failure to change a dylib ID or install name would previously cause a
rather cryptic error message, that didn't include the name of the file
that caused the failure, unless `--debug` was specified. Make sure to
output this information in all cases before re-raising the exception.
</pre>
</div>
</content>
</entry>
<entry>
<title>os/mac: optionally use ruby_macho.</title>
<updated>2016-02-03T21:25:40+00:00</updated>
<author>
<name>William Woodruff</name>
</author>
<published>2016-02-01T19:19:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=afe0fde49ceb29aba6f152967582ced5ba206c32'/>
<id>afe0fde49ceb29aba6f152967582ced5ba206c32</id>
<content type='text'>
- and branch for dylib_id_and_dylibs
- add branches for dylib id changing and change_install_name
- rename MachO module to HomebrewMachO to prevent namespace clashes
  with MachO in ruby-macho. this will eventually be replaced entirely
  with direct calls to ruby-macho methods
- break ruby-macho implementation out into separate RubyMachO module,
  and include either RubyMachO or CctoolsMachO (the original
  implementation) based on the HOMEBREW_RUBY_MACHO env var
- move ArchitectureListExtension and RubyMachO into separate files
- create {ruby_,cctools_,,}relocate.rb for isolation of different
  methods of mach-o relocation (ruby-macho vs. cctools)
- fill in require_install_name_tool? for ruby_relocate.rb
- rename {ruby_,cctools_,,}relocate.rb to keg, isolate requires in
  os/mac

Closes Homebrew/homebrew#45001.

Signed-off-by: Mike McQuaid &lt;mike@mikemcquaid.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- and branch for dylib_id_and_dylibs
- add branches for dylib id changing and change_install_name
- rename MachO module to HomebrewMachO to prevent namespace clashes
  with MachO in ruby-macho. this will eventually be replaced entirely
  with direct calls to ruby-macho methods
- break ruby-macho implementation out into separate RubyMachO module,
  and include either RubyMachO or CctoolsMachO (the original
  implementation) based on the HOMEBREW_RUBY_MACHO env var
- move ArchitectureListExtension and RubyMachO into separate files
- create {ruby_,cctools_,,}relocate.rb for isolation of different
  methods of mach-o relocation (ruby-macho vs. cctools)
- fill in require_install_name_tool? for ruby_relocate.rb
- rename {ruby_,cctools_,,}relocate.rb to keg, isolate requires in
  os/mac

Closes Homebrew/homebrew#45001.

Signed-off-by: Mike McQuaid &lt;mike@mikemcquaid.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
