Guest User

Untitled

a guest
Feb 19th, 2018
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. def requirable?(filename)
  2. result = fork do
  3. begin
  4. require filename
  5. exit!(0)
  6. rescue
  7. exit!(1)
  8. end
  9. end
  10. result == 0 ? true : false
  11. end
Add Comment
Please, Sign In to add comment