class Numeric


on Enum instances.
we can get people to stop calling #value
Adding extension to Numeric until
#

def value

def value
  $stderr.puts <<-DEPRECATION
RECATED] Enum#value is deprecated and will be removed in the next release.
          Use Enum#to_i instead.
ECATION
  self
end