diff options
| author | Jack Nagel | 2014-07-28 16:23:42 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-07-28 16:23:42 -0500 |
| commit | 1a6605e48103c601e1d5ea4dddaff412932d424b (patch) | |
| tree | 8ec52a4faec193c20ff43db01c6df2d93a8d5eaf | |
| parent | b1d641966c2643991e472045907bc7a42a0fed68 (diff) | |
| download | homebrew-1a6605e48103c601e1d5ea4dddaff412932d424b.tar.bz2 | |
Make Patch a module since it only has singleton methods
| -rw-r--r-- | Library/Homebrew/patch.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/patch.rb b/Library/Homebrew/patch.rb index 973bc3b71..377ef3ead 100644 --- a/Library/Homebrew/patch.rb +++ b/Library/Homebrew/patch.rb @@ -2,7 +2,7 @@ require 'resource' require 'stringio' require 'erb' -class Patch +module Patch def self.create(strip, io, &block) case strip when :DATA, IO, StringIO |
