Source: show | on GitHub
# File activesupport/lib/active_support/file_watcher.rb, line 4 4: def initialize(path, watcher) 5: @watcher = watcher 6: @path = path 7: end
# File activesupport/lib/active_support/file_watcher.rb, line 9 9: def trigger(files) 10: @watcher.trigger(files) 11: end