Skip to content

Instantly share code, notes, and snippets.

@gcao
Created June 13, 2010 15:42
Show Gist options
  • Save gcao/436756 to your computer and use it in GitHub Desktop.
Save gcao/436756 to your computer and use it in GitHub Desktop.
before :test do
puts 'before 1'
end
a4r_group do
before :test do
puts 'before 2'
end
end
def test
puts 'test'
end
instance.test
# === Output ===
# before 2
# before 1
# test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment