aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/file_update_checker.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-12-12 14:53:25 +0100
committerJosé Valim <jose.valim@gmail.com>2011-12-12 14:57:09 +0100
commit57e0c038d627fe0c5d85883a0a29c17257f9c4e5 (patch)
tree95c7364ea3a843314b9935534fd3dffdc00ba983 /activesupport/lib/active_support/file_update_checker.rb
parent5c234ab8ed4659a74a6c47ce8337055a62f75eff (diff)
downloadrails-57e0c038d627fe0c5d85883a0a29c17257f9c4e5.tar.gz
rails-57e0c038d627fe0c5d85883a0a29c17257f9c4e5.tar.bz2
rails-57e0c038d627fe0c5d85883a0a29c17257f9c4e5.zip
Allow FileUpdateChecker to work with globs.
Diffstat (limited to 'activesupport/lib/active_support/file_update_checker.rb')
-rw-r--r--activesupport/lib/active_support/file_update_checker.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/file_update_checker.rb b/activesupport/lib/active_support/file_update_checker.rb
index f76ddff038..9d617b39d4 100644
--- a/activesupport/lib/active_support/file_update_checker.rb
+++ b/activesupport/lib/active_support/file_update_checker.rb
@@ -22,7 +22,9 @@ module ActiveSupport
end
def updated_at
- paths.map { |path| File.mtime(path) }.max
+ # TODO: Use Enumerable check once we get rid of 1.8.7
+ all = paths.is_a?(Array) ? paths : Dir[paths]
+ all.map { |path| File.mtime(path) }.max
end
def execute_if_updated