Skip to content

Instantly share code, notes, and snippets.

@gcao
Created June 8, 2010 12:54
Show Gist options
  • Save gcao/429965 to your computer and use it in GitHub Desktop.
Save gcao/429965 to your computer and use it in GitHub Desktop.
class A
include Aspect4r
before :test, :validate
after :test, :handle_result
def test value
value
end
def validate value
end
def handle_result result, value
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment