From 51414a0893096709cdc3d02c72d6bfb67fa43319 Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Tue, 8 Feb 2011 10:48:01 -0800 Subject: use === so that regular expressions are not required --- activesupport/lib/active_support/file_watcher.rb | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'activesupport/lib/active_support') diff --git a/activesupport/lib/active_support/file_watcher.rb b/activesupport/lib/active_support/file_watcher.rb index 81b4b117c1..81e63e76a7 100644 --- a/activesupport/lib/active_support/file_watcher.rb +++ b/activesupport/lib/active_support/file_watcher.rb @@ -15,17 +15,16 @@ module ActiveSupport @regex_matchers = {} end - def watch_regex(regex, &block) - @regex_matchers[regex] = block + def watch(pattern, &block) + @regex_matchers[pattern] = block end - alias :watch :watch_regex def trigger(files) trigger_files = Hash.new { |h,k| h[k] = Hash.new { |h2,k2| h2[k2] = [] } } files.each do |file, state| - @regex_matchers.each do |regex, block| - trigger_files[block][state] << file if regex === file + @regex_matchers.each do |pattern, block| + trigger_files[block][state] << file if pattern === file end end -- cgit v1.2.3