execute()
public
Executes the given block and updates the latest watched files and
timestamp.
# File activesupport/lib/active_support/file_update_checker.rb, line 82
def execute
@last_watched = watched
@last_update_at = updated_at(@last_watched)
@block.call
ensure
@watched = nil
@updated_at = nil
end