Skip to content

Instantly share code, notes, and snippets.

@k-hamada
Created March 14, 2016 03:26
Show Gist options
  • Save k-hamada/c251a1158919ecde280d to your computer and use it in GitHub Desktop.
Save k-hamada/c251a1158919ecde280d to your computer and use it in GitHub Desktop.
def ok
puts "ok"
true
end
def ng
puts "ng"
false
end
[ok, ok, ng, ok].all?
puts
[:ok, :ok, :ng, :ok].all?{|check| method(check).call }
puts
[:ok, :ok, :ng, :ok].map{|sym| method(sym) }.all?(&:[])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment