module Warn::Deprecated
Constants
- VERSION
Public Instance Methods
deprecated(old_method, new_method)
click to toggle source
# File lib/warn/deprecated.rb, line 5 def deprecated(old_method, new_method) warn "warning: method #{old_method} is deprecated. Please use #{new_method}." end