2013-05-10 23:27:28 -05:00

7 lines
132 B
Ruby

class Version
def slice *args
opoo "Calling slice on versions is deprecated, use: to_s.slice"
to_s.slice(*args)
end
end