| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
* | Check for ActionMailer and ActionController before attempting to eager load t... | Sam Granieri | 2008-07-24 | 1 | -2/+2 |
* | Added config.dependency_loading to enable or disable the dependency loader af... | Joshua Peek | 2008-07-24 | 1 | -3/+24 |
* | Load view path cache after plugins and gems. | Joshua Peek | 2008-07-23 | 1 | -3/+10 |
* | Added configurable eager load paths. Defaults to app/models, app/controllers,... | Joshua Peek | 2008-07-21 | 1 | -4/+21 |
* | Preload application classes. Uses same strategy as phusion passenger. | Joshua Peek | 2008-07-21 | 1 | -0/+11 |
* | Merge with docrails. | Pratik Naik | 2008-07-16 | 1 | -2/+2 |
* | ActionMailer and ActionView can share the same view path cache | Joshua Peek | 2008-07-15 | 1 | -2/+4 |
* | Removed config.action_view.cache_template_loading, use config.cache_classes i... | Joshua Peek | 2008-07-15 | 1 | -0/+1 |
* | Give more info on missing gems and abort instead of printing a warning. App c... | Jeremy Kemper | 2008-07-15 | 1 | -5/+10 |
* | Refactor template preloading. New abstractions include Renderable mixins and ... | Joshua Peek | 2008-07-12 | 1 | -1/+1 |
* | Added Rails.initialized? flag | Joshua Peek | 2008-07-02 | 1 | -23/+32 |
* | Add the gem load paths before the framework is loaded, so certain gems like R... | rick | 2008-06-08 | 1 | -4/+4 |
* | Renamed StringQuestioneer to StringInquirer. | Joshua Peek | 2008-06-04 | 1 | -1/+1 |
* | Namespaced StringQuestioneer under ActiveSupport. | Joshua Peek | 2008-06-04 | 1 | -1/+1 |
* | Dependencies move to ActiveSupport::Dependencies missed a few spots | David Heinemeier Hansson | 2008-06-03 | 1 | -7/+7 |
* | Wrapped Rails.env in StringQuestioneer so you can do Rails.env.development? [... | David Heinemeier Hansson | 2008-06-03 | 1 | -1/+1 |
* | Fixed initializer tests by stubbing out gems dependencies check. | Joshua Peek | 2008-06-02 | 1 | -4/+7 |
* | Added Rack middleware to handle static files. | Joshua Peek | 2008-06-01 | 1 | -0/+1 |
* | Consolidate error messages for missing gems, and skip them when running rake ... | rick | 2008-05-31 | 1 | -12/+31 |
* | Merge docrails. | Pratik Naik | 2008-05-25 | 1 | -23/+23 |
* | Add Rails.version. [#236 state:resolved] | Ryan Bates | 2008-05-22 | 1 | -0/+4 |
* | Merge docrails: | Pratik Naik | 2008-05-09 | 1 | -3/+5 |
* | Improve documentation coverage and markup | Xavier Noria | 2008-05-02 | 1 | -2/+2 |
* | Made the location of the routes file configurable with config.routes_configur... | David Heinemeier Hansson | 2008-05-01 | 1 | -0/+10 |
* | Prevent AssetTagHelper from crashing if RAILS_ROOT is not defined. Fixes comp... | Hongli Lai (Phusion | 2008-05-01 | 1 | -2/+6 |
* | run prepare callbacks after after_initialize blocks so config.to_prepare actu... | Jeremy Kemper | 2008-04-28 | 1 | -3/+3 |
* | Be friendlier when upgrading apps with an old boot.rb. | John Barnette | 2008-04-28 | 1 | -0/+4 |
* | Refactor Dispatcher callbacks to remove unnecessary Dependencies checks in pr... | Pratik Naik | 2008-04-18 | 1 | -0/+9 |
* | Added Rails.public_path to control where HTML and assets are expected to be l... | David Heinemeier Hansson | 2008-04-13 | 1 | -0/+8 |
* | Don't require rails/gem_builder during rails initialization, it's only needed... | Rick Olson | 2008-04-08 | 1 | -1/+0 |
* | Flesh out rake gems:unpack to unpack all gems, and add rake gems:build for na... | Rick Olson | 2008-04-02 | 1 | -0/+1 |
* | Fix that config.to_prepare dependency error. Closes #10520 [akaspick, Pratik] | Pratik Naik | 2008-04-02 | 1 | -2/+4 |
* | spell check | Rick Olson | 2008-04-01 | 1 | -1/+1 |
* | Add config.active_support for future configuration options. Also, add more n... | Rick Olson | 2008-04-01 | 1 | -0/+7 |