当Rails应用程序关闭时,遵循的步骤是什么?如何挂钩到清理在Rails应用程序运行期间创建的文件?
答案 0 :(得分:5)
您可以将以下块添加到config/boot.rb
以在应用关闭时运行命令:
at_exit do
puts "Shutting the app down..."
end
这是您在服务器进程中看到的输出:
[Swanny ~/Sites/test_app]$ bundle exec thin start
>> Using rack adapter
>> Thin web server (v1.3.1 codename Triple Espresso)
>> Maximum connections set to 1024
>> Listening on 0.0.0.0:3000, CTRL+C to stop
^C>> Stopping ...
Shutting the app down...