method

execute_if_updated

execute_if_updated()
public

No documentation available.

# File activesupport/lib/active_support/evented_file_update_checker.rb, line 80
    def execute_if_updated
      if updated?
        yield if block_given?
        execute
        true
      end
    end