aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/load_error.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-07-06 10:43:42 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-07-06 10:43:42 +0000
commitdc8989a42561e395b90b3113c2cd889e39087ec0 (patch)
tree8cf0e425735bd79f284cfbd71922c2419abdfa1d /activesupport/lib/active_support/core_ext/load_error.rb
parent169eb781f1e1440bf8196a50d6b113a82707ed43 (diff)
downloadrails-dc8989a42561e395b90b3113c2cd889e39087ec0.tar.gz
rails-dc8989a42561e395b90b3113c2cd889e39087ec0.tar.bz2
rails-dc8989a42561e395b90b3113c2cd889e39087ec0.zip
Fixed documentation for release (AS)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1735 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/lib/active_support/core_ext/load_error.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/load_error.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/activesupport/lib/active_support/core_ext/load_error.rb b/activesupport/lib/active_support/core_ext/load_error.rb
index a04c4215d4..fac4639eed 100644
--- a/activesupport/lib/active_support/core_ext/load_error.rb
+++ b/activesupport/lib/active_support/core_ext/load_error.rb
@@ -1,4 +1,4 @@
-class MissingSourceFile < LoadError
+class MissingSourceFile < LoadError #:nodoc:
attr_reader :path
def initialize(message, path)
super(message)
@@ -24,10 +24,10 @@ class MissingSourceFile < LoadError
]
end
-module ActiveSupport
- module CoreExtensions
- module LoadErrorExtensions
- module LoadErrorClassMethods
+module ActiveSupport #:nodoc:
+ module CoreExtensions #:nodoc:
+ module LoadErrorExtensions #:nodoc:
+ module LoadErrorClassMethods #:nodoc:
def new(*args)
(self == LoadError && MissingSourceFile.from_message(args.first)) || super
end