= private = protected
delete()
Close and delete the session’s FileStore file.
# File lib/cgi/session.rb, line 437 def delete File::unlink @path+".lock" rescue nil File::unlink @path+".new" rescue nil File::unlink @path rescue Errno::ENOENT end