index
:
rails.git
3-2-stable-for-hmno
master
Mirror of official rails repo with custom fixes.
Harald Eilertsen
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
activesupport
/
lib
/
active_support
/
dependencies.rb
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Update Dependencies to ignore constants inherited from ancestors. Closes #6951.
Nicholas Seckar
2007-03-14
1
-3
/
+3
*
Remove noisy nodoc for Ruby 1.8.4
David Heinemeier Hansson
2007-01-28
1
-1
/
+0
*
Nodoc the irrelevant (from 1.2)
David Heinemeier Hansson
2007-01-26
1
-1
/
+1
*
Check for nil name also. Closes #6561.
Jeremy Kemper
2006-12-31
1
-1
/
+2
*
Fix Dependencies.autoloaded? to ignore anonymous modules. Closes #6561.
Nicholas Seckar
2006-12-31
1
-0
/
+1
*
Update load once paths to prevent nested once constants from being detected a...
Nicholas Seckar
2006-12-24
1
-2
/
+6
*
Fix remove_constant to correctly handle constant names of the form "::A::..."...
Nicholas Seckar
2006-12-09
1
-1
/
+2
*
Update dependencies to delete partially loaded constants.
Nicholas Seckar
2006-11-07
1
-19
/
+34
*
Update dependencies to allow constants to be defined alongside their siblings.
Nicholas Seckar
2006-11-01
1
-5
/
+79
*
Add 'unloadable', a method used to mark any constant as requiring an unload a...
Nicholas Seckar
2006-10-15
1
-17
/
+71
*
Undo accidental commit
Nicholas Seckar
2006-10-14
1
-42
/
+16
*
Rename overlapping test names
Nicholas Seckar
2006-10-14
1
-16
/
+42
*
Fix loadable_constants_for_path to handle load paths that do not end with a s...
Nicholas Seckar
2006-09-06
1
-8
/
+7
*
Fix logic error in determining what was loaded by a given file. Closes #6039.
Nicholas Seckar
2006-09-05
1
-1
/
+1
*
Equate Kernel.const_missing with Object.const_missing. Fixes #5988.
Nicholas Seckar
2006-09-05
1
-0
/
+9
*
Add ApplicationController special case to Dependencies.
Nicholas Seckar
2006-09-02
1
-2
/
+8
*
Tighten rescue clauses. Closes #5985.
Jeremy Kemper
2006-08-31
1
-2
/
+2
*
Update Initializer to use load_once_paths to avoid plugin reloading. Referenc...
Nicholas Seckar
2006-08-29
1
-24
/
+43
*
Widen too narrow rescue
Nicholas Seckar
2006-08-17
1
-1
/
+1
*
Detect missing_constants calls from removed modules and fail accordingly.
Nicholas Seckar
2006-08-17
1
-0
/
+4
*
Fix const_missing to behave responsibly when called within anonymous modules
Nicholas Seckar
2006-08-16
1
-1
/
+6
*
Update require_dependency to return true or false as require does.
Nicholas Seckar
2006-08-16
1
-4
/
+6
*
Stop using defined? in Dependencies.qualified_const_defined? since defined? m...
Nicholas Seckar
2006-08-16
1
-1
/
+11
*
Dependencies can autoload directories of nested classes.
Jeremy Kemper
2006-08-16
1
-1
/
+5
*
Add debugging logging to Dependencies.
Nicholas Seckar
2006-08-13
1
-1
/
+31
*
Add forgotten files; Fix double loading errors.
Nicholas Seckar
2006-08-08
1
-6
/
+7
*
Checkin forgotten add. Update const_missing handler to avoid double loading f...
Nicholas Seckar
2006-08-08
1
-1
/
+1
*
New dependencies implementation
Nicholas Seckar
2006-08-08
1
-40
/
+154
*
Raise fully qualified names upon name errors. Closes #5533.
Nicholas Seckar
2006-08-05
1
-2
/
+16
*
occured -> occurred. Closes #5559.
Jeremy Kemper
2006-07-10
1
-2
/
+2
*
Fix for depot and other applications with .13 style environment.rb files. p...
Michael Koziarski
2006-04-03
1
-0
/
+11
*
Dependencies cleanup. Fixes #4221.
Nicholas Seckar
2006-03-27
1
-18
/
+5
*
Remove ::Controllers related cruft; fix AP tests
Nicholas Seckar
2006-02-26
1
-4
/
+0
*
Remove LoadingModule
Nicholas Seckar
2006-02-03
1
-130
/
+0
*
Add LoadingModule.clear! back temporarily
Nicholas Seckar
2006-02-02
1
-0
/
+8
*
Further improvements to reloading code
Nicholas Seckar
2006-02-02
1
-8
/
+0
*
Added reusable reloading support through the inclusion of the Relodable modul...
David Heinemeier Hansson
2006-01-29
1
-13
/
+52
*
Handle mutual dependencies with .rb suffix.
Jeremy Kemper
2005-11-28
1
-15
/
+11
*
Introduce Dependencies.warnings_on_first_load setting. If true, enables warn...
Jeremy Kemper
2005-11-24
1
-2
/
+7
*
Sever infinite loop for mutual dependencies. Closes #2997.
Jeremy Kemper
2005-11-24
1
-7
/
+15
*
Dependencies: set load_file_name = file_name if it ends in .rb
Jeremy Kemper
2005-11-23
1
-1
/
+1
*
Enable warnings on first load only. File which are loaded but raise an excep...
Jeremy Kemper
2005-11-23
1
-10
/
+26
*
r3240@asus: jeremy | 2005-11-20 23:22:34 -0800
Jeremy Kemper
2005-11-21
1
-6
/
+2
*
Turn warnings on when loading a file if Dependencies.mechanism == :load. Com...
Jeremy Kemper
2005-11-21
1
-3
/
+12
*
Fix const_missing handler to ignore the trailing '.rb' on files when comparin...
Nicholas Seckar
2005-11-10
1
-1
/
+1
*
Fix broken tests caused by incomplete loading of active support.
Nicholas Seckar
2005-11-07
1
-0
/
+1
*
When loading classes using const_missing, raise a NameError if and only if th...
Nicholas Seckar
2005-10-27
1
-8
/
+8
*
Chain the const_missing hook to any previously existing hook so rails can pla...
Jamis Buck
2005-10-03
1
-1
/
+8
*
Fixed dependencies related infinite recursion bug when a controller file does...
Nicholas Seckar
2005-09-12
1
-1
/
+7
*
Added more efficient implementation of the development mode reset of classes ...
David Heinemeier Hansson
2005-07-07
1
-1
/
+1
[prev]
[next]