From a10606c490471d8e1483acb3b31d7f2d51e9ebbe Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Tue, 23 Aug 2011 16:55:11 -0700 Subject: require needs to return true or false. thank you Ryan "zenspider" Davis --- activesupport/lib/active_support/dependencies.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'activesupport/lib/active_support/dependencies.rb') diff --git a/activesupport/lib/active_support/dependencies.rb b/activesupport/lib/active_support/dependencies.rb index 3f6c93e860..cc6e811224 100644 --- a/activesupport/lib/active_support/dependencies.rb +++ b/activesupport/lib/active_support/dependencies.rb @@ -233,7 +233,9 @@ module ActiveSupport #:nodoc: end def require(file, *) - load_dependency(file) { super } + result = false + load_dependency(file) { result = super } + result end # Mark the given constant as unloadable. Unloadable constants are removed each -- cgit v1.2.3