Guest User

Untitled

a guest
Jun 25th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. class Test
  2. def can_foo?
  3. respond_to?(:foo)
  4. end
  5.  
  6. private
  7.  
  8. def foo;end
  9. end
  10.  
  11. Test.new.can_foo?
  12. #=> false
  13. Test.new.respond_to?(:foo,true)
  14. #=> true
Add Comment
Please, Sign In to add comment