Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove String#constantize deps | Jeremy Kemper | 2010-06-11 | 1 | -1/+1 |
| | |||||
* | Clear const references all at once | Jeremy Kemper | 2010-06-05 | 1 | -6/+9 |
| | |||||
* | ActiveSupport::Dependencies.constantize shortcut for caching named constant ↵ | Jeremy Kemper | 2010-06-05 | 1 | -3/+9 |
| | | | | lookups | ||||
* | Optimize LookupContext | wycats | 2010-06-04 | 1 | -0/+23 |
| | |||||
* | refactor evals and adds some __FILE__ and __LINE__ | Santiago Pastorino | 2010-05-20 | 1 | -1/+1 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Escape the file name (who knows when a "(" might appear in a filename!) | Yehuda Katz | 2010-02-27 | 1 | -1/+1 |
| | |||||
* | Remove the noisy lines involving AS::Dependencies from the NameError stack ↵ | Yehuda Katz | 2010-02-27 | 1 | -0/+3 |
| | | | | trace if a constant cannot be found. | ||||
* | warning: instance variable @_const_missing not initialized fixed | Santiago Pastorino | 2010-02-19 | 1 | -1/+1 |
| | |||||
* | Fix a problem where nil was appearing in the list | Yehuda Katz | 2010-02-19 | 1 | -4/+6 |
| | |||||
* | Git fail | Yehuda Katz | 2010-02-18 | 1 | -1/+0 |
| | |||||
* | Don't constantize possible module names when looking for new constants ↵ | Yehuda Katz | 2010-02-18 | 1 | -0/+1 |
| | | | | unless they exist | ||||
* | Right. | Yehuda Katz | 2010-02-14 | 1 | -1/+4 |
| | |||||
* | require Strings, not Symbols | Yehuda Katz | 2010-02-14 | 1 | -0/+1 |
| | |||||
* | Save off Module's const_missing, not Class' | Yehuda Katz | 2010-02-14 | 1 | -1/+1 |
| | |||||
* | Missing require | Yehuda Katz | 2010-02-14 | 1 | -0/+1 |
| | |||||
* | name.blank? -> anonymous? in a few places | Xavier Noria | 2010-02-14 | 1 | -1/+1 |
| | | | | Signed-off-by: Yehuda Katz <yehudakatz@YK.local> | ||||
* | Simplify dependencies.rb some. Remove alias of Kernel::Foo to Object::Foo as ↵ | Yehuda Katz | 2010-02-14 | 1 | -190/+135 |
| | | | | it was not used and breaks Ruby semantics. | ||||
* | Stop overriding LoadError.new to return a MissingSourceError (and sometimes ↵ | Yehuda Katz | 2010-01-19 | 1 | -1/+1 |
| | | | | nil!) | ||||
* | Ruby 1.9.2: work around changes to flatten and nil.to_str | Jeremy Kemper | 2009-11-08 | 1 | -1/+1 |
| | |||||
* | Simplify helper use of ActiveSupport::Dependencies, and use super better for ↵ | Yehuda Katz + Carl Lerche | 2009-06-10 | 1 | -5/+10 |
| | | | | in #helpers | ||||
* | Fix dependencies revealed by testing in isolation | Jeremy Kemper | 2009-04-22 | 1 | -3/+5 |
| | |||||
* | Opt in to Dependencies | Jeremy Kemper | 2009-04-22 | 1 | -0/+1 |
| | |||||
* | Explicit dependency on Module extensions | Jeremy Kemper | 2009-03-28 | 1 | -0/+3 |
| | |||||
* | Hack in env variable setting for Dependencies.mechanism | Jeremy Kemper | 2009-03-26 | 1 | -1/+1 |
| | |||||
* | Narrow dependencies | Jeremy Kemper | 2009-03-26 | 1 | -1/+1 |
| | |||||
* | Explicit NameError dependency | Jeremy Kemper | 2009-03-26 | 1 | -0/+1 |
| | |||||
* | Explicit dependency on Inflector and Object#blank? | Jeremy Kemper | 2009-03-24 | 1 | -4/+6 |
| | |||||
* | Explicitly require set | Jeremy Kemper | 2009-03-21 | 1 | -0/+2 |
| | |||||
* | Ensure constant_watch_stack is protected by a mutex, so concurrent requires ↵ | Charles Nutter | 2009-01-30 | 1 | -5/+14 |
| | | | | | | | | do not corrupt it. [#1816 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | ||||
* | Properly parenthasize calls to defined?(Rails) in 75fa82418 [#1563 ↵ | Frederick Cheung | 2008-12-15 | 1 | -1/+1 |
| | | | | | | state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
* | Prefer Rails.logger over RAILS_DEFAULT_LOGGER | Joshua Peek | 2008-12-10 | 1 | -3/+3 |
| | |||||
* | alternative resolution to vendor load problem | Matt Jones | 2008-11-20 | 1 | -21/+22 |
| | | | | Signed-off-by: David Heinemeier Hansson <david@loudthinking.com> | ||||
* | add vendor/ back to load paths; catch errors in constant loading | Matt Jones | 2008-11-18 | 1 | -15/+19 |
| | | | | Signed-off-by: David Heinemeier Hansson <david@loudthinking.com> | ||||
* | BACKWARDS INCOMPATIBLE: Renamed application.rb to application_controller.rb ↵ | David Heinemeier Hansson | 2008-11-17 | 1 | -5/+1 |
| | | | | and removed all the special casing that was in place to support the former. You must do this rename in your own application when you upgrade to this version [DHH] | ||||
* | Only track new constant definitions when we're reloading dependencies | Jeremy Kemper | 2008-11-10 | 1 | -2/+10 |
| | |||||
* | Consistently use the framework's configured logger and avoid reverting to ↵ | Joshua Peek | 2008-08-18 | 1 | -3/+7 |
| | | | | RAILS_DEFAULT_LOGGER unless necessary. | ||||
* | Added config.dependency_loading to enable or disable the dependency loader ↵ | Joshua Peek | 2008-07-24 | 1 | -19/+59 |
| | | | | after initialization | ||||
* | Refactor ActiveSupport::Dependencies injector so it would be possible to ↵ | Joshua Peek | 2008-07-19 | 1 | -104/+114 |
| | | | | disable it | ||||
* | Remove some Symbol#to_proc usage in runtime code. [#484 state:resolved] | Cheah Chu Yeow | 2008-07-09 | 1 | -2/+2 |
| | |||||
* | Fix typo in apparently-dead will_unload? method. | Jeremy Kemper | 2008-06-27 | 1 | -1/+1 |
| | |||||
* | Namespace Inflector, Dependencies, OrderedOptions, and TimeZone under ↵ | Joshua Peek | 2008-06-03 | 1 | -392/+393 |
| | | | | ActiveSupport [#238 state:resolved] | ||||
* | Fixed Dependencies so load errors are not masked behind a 'Expected x.rb to ↵ | Tom Ward | 2008-05-31 | 1 | -9/+10 |
| | | | | | | define X' message when mechanism is not set to :load [#87 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
* | Fix Dependencies watch_frames collection. [#24 state:resolved] | Tom Ward | 2008-05-20 | 1 | -1/+1 |
| | | | | | | | | | | Previously, the code collecting watch_frames could fail leaving watch_frames defined but nil. The cleanup code checks watch_frames is defined, but not that it holds a value, raising an undefined method on NilClass error rather than the original cause. This can make debugging the underlying cause a total pain. Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | ||||
* | Ruby 1.9 compat: compatibility wrapper for new Module#const_defined? behavior | Jeremy Kemper | 2008-05-01 | 1 | -5/+16 |
| | |||||
* | Cheaper Dependencies#log_call to resolve irritating error message w/ rake ↵ | David Heinemeier Hansson | 2008-04-30 | 1 | -4/+6 |
| | | | | db:create (Sven) [#56 state:resolved] | ||||
* | Don't need to explicitly pass the same params to super. Remove trailing ↵ | Jeremy Kemper | 2008-03-30 | 1 | -62/+60 |
| | | | | | | whitespace. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9143 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Ruby 1.9 compat: dependencies uses Module#local_constant_names. References ↵ | Jeremy Kemper | 2007-12-22 | 1 | -3/+3 |
| | | | | | | #1689 [Frederick Cheung] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8482 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Revert const_missing bypass in favor of Duration constant lookup tweak | Jeremy Kemper | 2007-12-15 | 1 | -5/+0 |
| | | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8412 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Bypass const_missing lookup for toplevel constants. Optimizes for Ruby 1.9 ↵ | Jeremy Kemper | 2007-12-15 | 1 | -7/+12 |
| | | | | | | const_defined. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8396 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Ruby 1.9 compat, consistent load paths | Jeremy Kemper | 2007-10-02 | 1 | -3/+3 |
| | | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7719 5ecf4fe2-1ee6-0310-87b1-e25e094e27de |