aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/file_update_checker.rb
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2015-11-11 07:09:36 +0100
committerXavier Noria <fxn@hashref.com>2015-11-11 07:09:36 +0100
commitd0ae8adfb715cc647b1d0c1c385a8e649cf87445 (patch)
tree4ebdb712cae3ae7cf3f131946816e16d3efb1d7d /activesupport/lib/active_support/file_update_checker.rb
parent2af7338bdf32790a28e388a99dada84db0af1b5f (diff)
parent1583c8290a0bbb44ae684974e8fdd459f548f0f4 (diff)
downloadrails-d0ae8adfb715cc647b1d0c1c385a8e649cf87445.tar.gz
rails-d0ae8adfb715cc647b1d0c1c385a8e649cf87445.tar.bz2
rails-d0ae8adfb715cc647b1d0c1c385a8e649cf87445.zip
Merge branch 'fxn-master'
Diffstat (limited to 'activesupport/lib/active_support/file_update_checker.rb')
-rw-r--r--activesupport/lib/active_support/file_update_checker.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/file_update_checker.rb b/activesupport/lib/active_support/file_update_checker.rb
index 78b627c286..1fa9335080 100644
--- a/activesupport/lib/active_support/file_update_checker.rb
+++ b/activesupport/lib/active_support/file_update_checker.rb
@@ -35,7 +35,7 @@ module ActiveSupport
# This method must also receive a block that will be called once a path
# changes. The array of files and list of directories cannot be changed
# after FileUpdateChecker has been initialized.
- def initialize(files, dirs={}, &block)
+ def initialize(files, dirs = {}, &block)
@files = files.freeze
@glob = compile_glob(dirs)
@block = block