aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/compat/version.rb
blob: 2dd089015b6a5d3b920f85978a5349ff46b6ff20 (plain)
1
2
3
4
5
6
class Version
  def slice(*args)
    odeprecated "Version#slice", "Version#to_s.slice"
    to_s.slice(*args)
  end
end