aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2015-12-09 03:07:49 +0100
committerXavier Noria <fxn@hashref.com>2015-12-09 03:07:49 +0100
commit92a9744f8132f46b0e5f49fa5b4d8c66b4e861cb (patch)
tree312dce7c4e613094ced1ae963bbff4b2f4962593 /activesupport/lib
parenta61e4ae58d65d43a97e90bdb02b6c407791e3c53 (diff)
downloadrails-92a9744f8132f46b0e5f49fa5b4d8c66b4e861cb.tar.gz
rails-92a9744f8132f46b0e5f49fa5b4d8c66b4e861cb.tar.bz2
rails-92a9744f8132f46b0e5f49fa5b4d8c66b4e861cb.zip
renames AS::FileEventedUpdateChecker to AS::EventedFileUpdateChecker
Better English.
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support.rb2
-rw-r--r--activesupport/lib/active_support/evented_file_update_checker.rb (renamed from activesupport/lib/active_support/file_evented_update_checker.rb)2
2 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support.rb b/activesupport/lib/active_support.rb
index 3a2a7d28cb..2019afeb00 100644
--- a/activesupport/lib/active_support.rb
+++ b/activesupport/lib/active_support.rb
@@ -34,7 +34,7 @@ module ActiveSupport
autoload :Dependencies
autoload :DescendantsTracker
autoload :FileUpdateChecker
- autoload :FileEventedUpdateChecker
+ autoload :EventedFileUpdateChecker
autoload :LogSubscriber
autoload :Notifications
diff --git a/activesupport/lib/active_support/file_evented_update_checker.rb b/activesupport/lib/active_support/evented_file_update_checker.rb
index bb0f26f874..c1c30b1a86 100644
--- a/activesupport/lib/active_support/file_evented_update_checker.rb
+++ b/activesupport/lib/active_support/evented_file_update_checker.rb
@@ -4,7 +4,7 @@ require 'pathname'
require 'concurrent/atomic/atomic_boolean'
module ActiveSupport
- class FileEventedUpdateChecker #:nodoc: all
+ class EventedFileUpdateChecker #:nodoc: all
def initialize(files, dirs = {}, &block)
@ph = PathHelper.new
@files = files.map { |f| @ph.xpath(f) }.to_set