Notes posted by samsam
RSS feed
0 thanks
at_exit in sintra
in main.rb of sinatra:
at_exit { Application.run! if $!.nil? && Application.run? }

0 thanks
Another Example
Delete all files in log
require 'FileUtils' Dir["log/*"].each{|file| FileUtils.rm file}