| Commit message (Expand) | Author | Age | Files | Lines |
* | Disable eager loading for all rake tasks [#802 state:resolved] | Joshua Peek | 2009-01-27 | 1 | -1/+2 |
* | Setup ActiveRecord QueryCache middleware in the initializer | Joshua Peek | 2009-01-21 | 1 | -0/+1 |
* | Only insert metal middleware if any exist | Joshua Peek | 2009-01-21 | 1 | -1/+3 |
* | Decouple the local cache strategy from MemCacheStore for reuse with other rem... | Lourens Naude | 2009-01-17 | 1 | -2/+4 |
* | Added in a local per request cache to MemCacheStore. It acts as a buffer to s... | Nahum Wild | 2009-01-15 | 1 | -0/+3 |
* | Use Rack's MethodOverride lib [#1699 state:resolved] | Joshua Peek | 2009-01-13 | 1 | -1/+1 |
* | Move metal above method piggybacking middleware and add some test coverage | Joshua Peek | 2009-01-03 | 1 | -1/+1 |
* | Clean up view path cruft and split path implementations into Template::Path a... | Joshua Peek | 2008-12-29 | 1 | -3/+4 |
* | Make generated Metal bits a pure rack endpoint application (not middleware) | Joshua Peek | 2008-12-17 | 1 | -3/+1 |
* | Introduce Rails Metal | Joshua Peek | 2008-12-16 | 1 | -0/+10 |
* | Switch to Rack based session stores. | Joshua Peek | 2008-12-15 | 1 | -10/+2 |
* | Remove config dir from the load path | Jeremy Kemper | 2008-12-03 | 1 | -2/+1 |
* | Add internal middleware stack to Dispatcher | Joshua Peek | 2008-12-01 | 1 | -0/+5 |
* | Changed Rails.root to return a Pathname object (allows for Rails.root.join("a... | David Heinemeier Hansson | 2008-11-30 | 1 | -2/+2 |
* | Me loves me some whitespace | David Heinemeier Hansson | 2008-11-30 | 1 | -1/+6 |
* | Load app initializers by path relative to Rails.root | Jeremy Kemper | 2008-11-29 | 1 | -1/+1 |
* | Merge branch 'master' of git@github.com:rails/rails | Joshua Peek | 2008-11-29 | 1 | -6/+2 |
|\ |
|
| * | Enhanced Rails.root to take parameters that'll be join with the root, like Ra... | David Heinemeier Hansson | 2008-11-29 | 1 | -6/+2 |
| * | Revert "Super lazy load view paths in development mode (no indexing or cachin... | David Heinemeier Hansson | 2008-11-29 | 1 | -4/+3 |
* | | Reinstate "Super lazy load view paths in development mode (no indexing or cac... | Joshua Peek | 2008-11-28 | 1 | -3/+4 |
* | | Revert "Super lazy load view paths in development mode (no indexing or cachin... | David Heinemeier Hansson | 2008-11-27 | 1 | -4/+3 |
|/ |
|
* | Merge branch 'master' of git@github.com:rails/rails | David Heinemeier Hansson | 2008-11-27 | 1 | -3/+4 |
|\ |
|
| * | Super lazy load view paths in development mode (no indexing or caching at all... | Joshua Peek | 2008-11-26 | 1 | -3/+4 |
* | | Added view path support for engines [DHH] | David Heinemeier Hansson | 2008-11-27 | 1 | -6/+2 |
|/ |
|
* | Added that config/routes.rb files in engine plugins are automatically loaded ... | David Heinemeier Hansson | 2008-11-26 | 1 | -2/+7 |
* | Really remove components. | Jeremy Kemper | 2008-11-24 | 1 | -5/+1 |
* | Add config.preload_frameworks to load all frameworks at startup. Default to f... | Jeremy Kemper | 2008-11-24 | 1 | -0/+23 |
* | Initializer#env relies on StringInquirer autoload. Style fixes. | Jeremy Kemper | 2008-11-24 | 1 | -7/+4 |
* | Added ActiveSupport::BacktraceCleaner and Rails::BacktraceCleaner for cutting... | David Heinemeier Hansson | 2008-11-22 | 1 | -0/+8 |
* | add vendor/ back to load paths; catch errors in constant loading | Matt Jones | 2008-11-18 | 1 | -0/+1 |
* | Added config.i18n settings gatherer to config/environment, auto-loading of al... | David Heinemeier Hansson | 2008-11-18 | 1 | -0/+31 |
* | Make refresh_specs more resilient. Always add vendor/gems to gem search path.... | Matt Jones | 2008-11-01 | 1 | -0/+1 |
* | Memoize the require and construction of the StringInquirer | Michael Koziarski | 2008-10-19 | 1 | -2/+4 |
* | Fix a number of errors in the config.gem mechanism. | Matt Jones | 2008-10-05 | 1 | -1/+1 |
* | Database connections are now pooled, one pool per #establish_connection call. | Jeremy Kemper | 2008-09-02 | 1 | -1/+1 |
|\ |
|
| * | Get rid of 'Object#send!'. It was originally added because it's in Ruby 1.9, ... | Jeremy Kemper | 2008-08-31 | 1 | -1/+1 |
* | | Remove call to active_record.allow_concurrency since it's deprecated | Nick Sieger | 2008-08-29 | 1 | -1/+0 |
|/ |
|
* | Always require activesupport, even if its constant already exists | Tarmo Tänav | 2008-08-23 | 1 | -0/+1 |
* | Initializer to sort files before eager loading. [#859 state:resolved] | Tom Ward | 2008-08-22 | 1 | -1/+1 |
* | Consistently use the framework's configured logger and avoid reverting to RAI... | Joshua Peek | 2008-08-18 | 1 | -5/+10 |
* | Make sure ActionView is loaded inorder to build view paths | Joshua Peek | 2008-08-06 | 1 | -6/+10 |
* | MemoryStore is the only "unsafe" store. Make it threadsafe by default. | Joshua Peek | 2008-08-06 | 1 | -1/+0 |
* | Added config.threadsafe! to toggle allow concurrency settings and disable the... | Joshua Peek | 2008-08-04 | 1 | -0/+12 |
* | Make requiring gems optional. | Ben Sandofsky | 2008-08-04 | 1 | -1/+5 |
* | Merge branch 'master' of git@github.com:rails/rails | Jeremy Kemper | 2008-07-31 | 1 | -1/+1 |
|\ |
|
| * | Turn cache_classes on by default [#645 state:resolved] | Joshua Peek | 2008-07-31 | 1 | -1/+1 |
* | | load_application_classes requires files relative to the load path and without... | Jeremy Kemper | 2008-07-31 | 1 | -2/+3 |
|/ |
|
* | Initializer requires ERB explicitly instead of assuming Action Pack loaded it... | José Valim | 2008-07-30 | 1 | -0/+1 |
* | Initializer skips prepare_dispatcher if Action Controller isn't in use. [#72... | José Valim | 2008-07-30 | 1 | -0/+1 |
* | Remove incomplete non-blocking logger functionality | Michael Koziarski | 2008-07-29 | 1 | -1/+0 |