Skip to content

Instantly share code, notes, and snippets.

@andreastt
Created April 12, 2011 09:19
Show Gist options
  • Save andreastt/915226 to your computer and use it in GitHub Desktop.
Save andreastt/915226 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'deprecated'
class Foo
include Deprecated
def foo
"foo"
end
deprecated :foo
end
Foo.new.foo # will give deprecation notice
Deprecated.set_action do |klass, sym, replacement|
# nothing
end
Foo.new.foo # will call empty Proc deprecation notice
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment