class ActiveSupport::FileUpdateChecker

def execute_if_updated

Experimental RBS support (using type sampling data from the type_fusion project).

def execute_if_updated: () -> false

This signature was generated using 2 samples from 1 application.

Execute the block given if updated.
def execute_if_updated
  if updated?
    yield if block_given?
    execute
    true
  else
    false
  end
end