Skip to content

Instantly share code, notes, and snippets.

@mcansky
Created November 16, 2012 14:44
Show Gist options
  • Select an option

  • Save mcansky/4087840 to your computer and use it in GitHub Desktop.

Select an option

Save mcansky/4087840 to your computer and use it in GitHub Desktop.
def spook(_a, &block)
if _a == 1
puts "BOUYAH"
else
yield
end
end
[1,2].each do |i|
spook i do
puts "YABOOH"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment