aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/compat/md5.rb
blob: ede7edecb88d75231f0e7bf4a3e12130a819dc5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class Formula
  def self.md5(_val)
    odisabled "Formula.md5", "Formula.sha256"
  end
end

class SoftwareSpec
  def md5(_val)
    odisabled "SoftwareSpec#md5", "SoftwareSpec#sha256"
  end
end

class Resource
  def md5(_val)
    odisabled "Resource#md5", "Resource#sha256"
  end
end

class Pathname
  def md5
    odisabled "Pathname#md5", "Pathname#sha256"
  end
end