aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/compat/version.rb
blob: 0762d3694c84017014809462c97f061de1c6316d (plain)
1
2
3
4
5
6
class Version
  def slice(*args)
    opoo "Calling slice on versions is deprecated, use: to_s.slice"
    to_s.slice(*args)
  end
end