Guest User

Untitled

a guest
Jul 21st, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. def stop_tomcat
  2. puts "stopping tomcat"
  3. end
  4.  
  5. def start_tomcat
  6. puts "starting tomcat"
  7. end
  8.  
  9. def restart
  10. stop_tomcat
  11. yield
  12. start_tomcat
  13. end
  14.  
  15. restart do
  16. puts "doing stuff while tomcat is shutdown"
  17. end
Add Comment
Please, Sign In to add comment