aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/file_update_checker.rb
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2015-11-11 06:38:18 +0100
committerXavier Noria <fxn@hashref.com>2015-11-11 06:42:49 +0100
commitf3516f171b7a975e1d3d8aaa37f721476fe49806 (patch)
tree52fdbca73f67ea5d5176dda1410f89a2dbb98eac /activesupport/lib/active_support/file_update_checker.rb
parent40a1945d67869f660e7b07120a74106b0150ff23 (diff)
downloadrails-f3516f171b7a975e1d3d8aaa37f721476fe49806.tar.gz
rails-f3516f171b7a975e1d3d8aaa37f721476fe49806.tar.bz2
rails-f3516f171b7a975e1d3d8aaa37f721476fe49806.zip
applies code style guidelines
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