7 lines
132 B
Ruby
Raw Normal View History

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