Skip to content

Instantly share code, notes, and snippets.

@fernandezpablo85
Created July 30, 2011 02:16
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