Skip to content

Instantly share code, notes, and snippets.

@gcao
Created June 8, 2010 13:06
Show Gist options
  • Save gcao/429974 to your computer and use it in GitHub Desktop.
Save gcao/429974 to your computer and use it in GitHub Desktop.
class A
include Aspect4r::Classic
a4r_around :test do |proxy, value|
end
a4r_before_filter :test do |value|
end
a4r_before :test do |value|
end
a4r_after :test do |result, value|
end
def test value
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment