Skip to content

Instantly share code, notes, and snippets.

@fernandezpablo85
Created July 30, 2011 02:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fernandezpablo85/1115117 to your computer and use it in GitHub Desktop.
Save fernandezpablo85/1115117 to your computer and use it in GitHub Desktop.
def prepare_it
return yield
end
def method_1
p :m1
true
end
def method_2
p :m2
false
end
def method_3
p :m3
nil
end
done = prepare_it do
method_1 && method_2 && method_3
end
puts "Something did not work" unless done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment