aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2015-11-10 07:32:08 -0800
committerXavier Noria <fxn@hashref.com>2015-11-10 22:19:36 +0100
commit4e1cff0e20c473edcd5cbb3ca344284bb5f428c0 (patch)
treef814adfcfd4e3215bdc35ea38d81715a06fb167e /activesupport/lib
parentbf4532dfdfa06f6fb00e2ce33cfb4f5b5dc43d50 (diff)
downloadrails-4e1cff0e20c473edcd5cbb3ca344284bb5f428c0.tar.gz
rails-4e1cff0e20c473edcd5cbb3ca344284bb5f428c0.tar.bz2
rails-4e1cff0e20c473edcd5cbb3ca344284bb5f428c0.zip
indents private methods as per our guidelines
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/file_evented_update_checker.rb56
1 files changed, 28 insertions, 28 deletions
diff --git a/activesupport/lib/active_support/file_evented_update_checker.rb b/activesupport/lib/active_support/file_evented_update_checker.rb
index 27da2e1572..8f734ac4e4 100644
--- a/activesupport/lib/active_support/file_evented_update_checker.rb
+++ b/activesupport/lib/active_support/file_evented_update_checker.rb
@@ -41,46 +41,46 @@ module ActiveSupport
private
- def changed(modified, added, removed)
- unless updated?
- @updated = (modified + added + removed).any? {|f| watching?(f)}
+ def changed(modified, added, removed)
+ unless updated?
+ @updated = (modified + added + removed).any? {|f| watching?(f)}
+ end
end
- end
- def watching?(file)
- file = @ph.xpath(file)
+ def watching?(file)
+ file = @ph.xpath(file)
- return true if @files.member?(file)
- return false if file.directory?
+ return true if @files.member?(file)
+ return false if file.directory?
- ext = @ph.normalize_extension(file.extname)
- dir = file.dirname
+ ext = @ph.normalize_extension(file.extname)
+ dir = file.dirname
- loop do
- if @dirs.fetch(dir, []).include?(ext)
- break true
- else
- if @lcsp
- break false if dir == @lcsp
+ loop do
+ if @dirs.fetch(dir, []).include?(ext)
+ break true
else
- break false if dir.root?
- end
+ if @lcsp
+ break false if dir == @lcsp
+ else
+ break false if dir.root?
+ end
- dir = dir.parent
+ dir = dir.parent
+ end
end
end
- end
- def directories_to_watch
- bd = []
+ def directories_to_watch
+ bd = []
- bd.concat @files.map {|f| @ph.existing_parent(f.dirname)}
- bd.concat @dirs.keys.map {|dir| @ph.existing_parent(dir)}
- bd.compact!
- bd.uniq!
+ bd.concat @files.map {|f| @ph.existing_parent(f.dirname)}
+ bd.concat @dirs.keys.map {|dir| @ph.existing_parent(dir)}
+ bd.compact!
+ bd.uniq!
- @ph.filter_out_descendants(bd)
- end
+ @ph.filter_out_descendants(bd)
+ end
class PathHelper
using Module.new {