7 lines
133 B
Ruby
Raw Normal View History

2013-05-09 23:53:26 -05:00
class Version
def slice(*args)
2013-05-09 23:53:26 -05:00
opoo "Calling slice on versions is deprecated, use: to_s.slice"
to_s.slice(*args)
end
end