Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/Homebrew/brew.git. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
  1. Apr 15, 2015
  2. Apr 14, 2015
    • Jack Nagel's avatar
      Update test dependencies · 0d654536
      Jack Nagel authored
      0d654536
    • Dominyk Tiller's avatar
      brew pull: add automatic tap repair · 399388d8
      Dominyk Tiller authored
      
      At the moment, every time I pull a new formulae from a tap, I have to
      fetch it with the fully qualified name, `brew fetch
      homebrew/versions/duck123 `, which is fine, but then I also have to
      install, test, and audit it in the same way, which isn’t fixed until I
      tap repair, which gets a bit onerous.
      
      This just adds a step to `brew pull` where it does the tap repair
      automatically for taps.
      
      Closes Homebrew/homebrew#37788.
      
      Signed-off-by: default avatarMike McQuaid <mike@mikemcquaid.com>
      399388d8
  3. Apr 13, 2015
  4. Apr 10, 2015
  5. Apr 09, 2015
  6. Apr 08, 2015
  7. Apr 07, 2015
  8. Apr 06, 2015
  9. Apr 03, 2015
    • Jack Nagel's avatar
      Switch PkgVersion to use composition · 27092cab
      Jack Nagel authored
      Comparing PkgVersion and Version objects can produce nonsensical
      results. For example, equality is not symmetric:
      
      irb(main):002:0> PkgVersion.new("1.0", 0) == Version.new("1.0")
      => false
      irb(main):003:0> Version.new("1.0") == PkgVersion.new("1.0", 0)
      => true
      
      Rather than attempt to deal with subclass-superclass equality, let's use
      composition and punt on the problem altogether.
      27092cab
  10. Apr 02, 2015
Loading