Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Add lib to load paths when application is inherited to be able to load lib ↵ | José Valim | 2010-06-02 | 1 | -0/+11 | |
| | | | | code during configuration. | |||||
* | Remove the laziness from the middleware stack. | José Valim | 2010-05-29 | 1 | -1/+27 | |
| | ||||||
* | Removing Metal from Rails 3. | wycats | 2010-05-29 | 1 | -6/+4 | |
| | | | | | | | | | | | | | | | | | | | | If you have existing Metals, you have a few options: * if your metal behaves like a middleware, add it to the middleware stack via config.middleware.use. You can use methods on the middleware stack to control exactly where it should go * if it behaves like a Rack endpoint, you can link to it in the router. This will result in more optimal routing time, and allows you to remove code in your endpoint that matches specific URLs in favor of the more powerful handling in the router itself. For the future, you can use ActionController::Metal to get a very fast controller with the ability to opt-in to specific controller features without paying the penalty of the full controller stack. Since Rails 3 is closer to Rack, the Metal abstraction is no longer needed. | |||||
* | Expose remaining hooks to minimize the need for a Railtie based on feedback ↵ | José Valim | 2010-05-16 | 1 | -1/+0 | |
| | | | | from plugin developers. | |||||
* | Reorganized initializers a bit to enable better hooks for common cases ↵ | wycats | 2010-05-15 | 1 | -4/+6 | |
| | | | | | | | | | | | | | | | without the need for Railtie. Specifically, the following hooks were added: * before_configuration: this hook is run immediately after the Application class comes into existence, but before the user has added any configuration. This is the appropriate place to set configuration for your plugin * before_initialize: This is run after all of the user's configuration has completed, but before any initializers have begun (in other words, it runs right after config/environments/{development,production,test}.rb) * after_initialize: This is run after all of the initializers have run. It is an appropriate place for forking in a preforking setup Each of these hooks may be used via ActiveSupport.on_load(name) { }. In all these cases, the context inside the block will be the Application object. This means that for simple cases, you can use these hooks without needing to create a Railtie. | |||||
* | The rake task :environment now loads config/environment.rb instead of ↵ | José Valim | 2010-04-29 | 1 | -2/+2 | |
| | | | | initializing the application on its own. This fixes [#4492 state:resolved] and also avoids the application being initialized twice in some rake tasks. | |||||
* | Ensure application rake tasks and generators are loaded after the ones ↵ | José Valim | 2010-04-26 | 1 | -2/+2 | |
| | | | | specified in railties/engines/rails. [#4471 state:resolved] | |||||
* | Rename config.cookie_secret to config.secret_token and pass it as ↵ | José Valim | 2010-04-05 | 1 | -2/+9 | |
| | | | | configuration in request.env. This is another step forward removing global configuration. | |||||
* | Merge branch 'master' into docrails | wycats | 2010-03-26 | 1 | -1/+2 | |
|\ | ||||||
| * | Move application configuration to the application configuration object, ↵ | José Valim | 2010-03-26 | 1 | -0/+2 | |
| | | | | | | | | remove railtie_name and engine_name and allow to set the configuration object. | |||||
| * | Move railties/builtin into lib | Joshua Peek | 2010-03-20 | 1 | -1/+0 | |
| | | ||||||
* | | Merge remote branch 'mainstream/master' | Pratik Naik | 2010-03-12 | 1 | -6/+5 | |
|\| | | | | | | | | | | | | | Conflicts: activerecord/lib/active_record/base.rb railties/lib/rails/configuration.rb railties/lib/rails/log_subscriber.rb | |||||
| * | Aliasing class_eval makes JRuby ornery. | wycats | 2010-03-07 | 1 | -1/+4 | |
| | | ||||||
| * | Don't rely on Rails.application global state in Config | Carlhuda | 2010-03-03 | 1 | -4/+0 | |
| | | ||||||
| * | Get Railties tests passing | Carlhuda | 2010-02-25 | 1 | -1/+1 | |
| | | ||||||
| * | Use ActionDispatch::Routing everywhere | Martin Schürrer | 2010-02-21 | 1 | -1/+1 | |
| | | ||||||
| * | Typo | Martin Schürrer | 2010-02-21 | 1 | -1/+1 | |
| | | ||||||
* | | Add docs for Railtie, Engine, Plugin and Application. | José Valim | 2010-02-02 | 1 | -0/+37 | |
|/ | ||||||
* | Add more tests to some key points in Railties. | José Valim | 2010-01-28 | 1 | -0/+4 | |
| | | | | Signed-off-by: Carl Lerche <carllerche@mac.com> | |||||
* | Refactor MetalLoader and RoutesReloader to rely less on class configuration. | José Valim | 2010-01-28 | 1 | -2/+6 | |
| | | | | Signed-off-by: Carl Lerche <carllerche@mac.com> | |||||
* | Move Rails::Rack::Metal to Rails::Application::Metal and just add cascade if ↵ | José Valim | 2010-01-26 | 1 | -0/+1 | |
| | | | | any metal was declared. | |||||
* | Add tests for explicit engines. | José Valim | 2010-01-26 | 1 | -4/+1 | |
| | ||||||
* | Ensure calling a method in Rails::Application does not instantiate a void ↵ | José Valim | 2010-01-26 | 1 | -3/+3 | |
| | | | | application. | |||||
* | Ensure all initializers are collections. | José Valim | 2010-01-26 | 1 | -2/+2 | |
| | ||||||
* | Plugins need to load before app initializers | Joshua Peek | 2010-01-25 | 1 | -1/+1 | |
| | ||||||
* | Add Rails::Application pointer to the default app to add symmetry to ↵ | Joshua Peek | 2010-01-24 | 1 | -1/+5 | |
| | | | | Foo::Application | |||||
* | Ensure environment config has higher priority than application ones. | José Valim | 2010-01-24 | 1 | -2/+0 | |
| | ||||||
* | Ensure helpers work from configured path. | José Valim | 2010-01-24 | 1 | -2/+0 | |
| | ||||||
* | Solve some pendencies. | José Valim | 2010-01-24 | 1 | -3/+2 | |
| | ||||||
* | Move configuration to subfolders. | José Valim | 2010-01-23 | 1 | -1/+6 | |
| | ||||||
* | Create configurable modules and ensure that they are added only on direct ↵ | José Valim | 2010-01-23 | 1 | -28/+30 | |
| | | | | children. | |||||
* | Plugin is now an Engine. | José Valim | 2010-01-23 | 1 | -1/+0 | |
| | ||||||
* | First steps into making Plugin < Engine. | José Valim | 2010-01-23 | 1 | -0/+5 | |
| | ||||||
* | Extract Railtie load from application. | José Valim | 2010-01-23 | 1 | -29/+30 | |
| | ||||||
* | Break application.rb file in smaller chunks. | José Valim | 2010-01-23 | 1 | -102/+2 | |
| | ||||||
* | Extract routes reloading responsibilities from application and load them ↵ | José Valim | 2010-01-23 | 1 | -46/+21 | |
| | | | | just upon a request. | |||||
* | Ensure user set load paths have higher preference and move Bootstrap inside ↵ | José Valim | 2010-01-23 | 1 | -21/+100 | |
| | | | | Application. | |||||
* | Get rid of initializers global and create i18n railtie. | José Valim | 2010-01-23 | 1 | -54/+22 | |
| | ||||||
* | Moved more configuration away from bootstrap. | José Valim | 2010-01-22 | 1 | -0/+39 | |
| | ||||||
* | Got tests working once again. | José Valim | 2010-01-22 | 1 | -3/+1 | |
| | ||||||
* | Add view paths to Engine setup. | José Valim | 2010-01-22 | 1 | -9/+9 | |
| | ||||||
* | Massive cleanup in Railties and load stack. | José Valim | 2010-01-21 | 1 | -35/+29 | |
| | ||||||
* | Make filter parameters based on request, so they can be modified for ↵ | José Valim | 2010-01-21 | 1 | -0/+1 | |
| | | | | anything in the middleware stack. | |||||
* | fixes the failure of config.plugins without :all option tests [#3718 ↵ | Santiago Pastorino | 2010-01-20 | 1 | -4/+3 | |
| | | | | | | status:resolved] Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | Allow railties to specify generators paths. | José Valim | 2010-01-19 | 1 | -1/+5 | |
| | ||||||
* | Build middleware stack and reload routes after app initializers run | Joshua Peek | 2010-01-16 | 1 | -2/+12 | |
| | | | | [#3709 state:resolved] | |||||
* | Set up subscriber on initialization. | José Valim | 2010-01-13 | 1 | -3/+0 | |
| | ||||||
* | Run railtie and plugin initializers before app specific ones | Joshua Peek | 2010-01-07 | 1 | -130/+2 | |
| | ||||||
* | config.plugins should still work with an array of strings | Joshua Peek | 2010-01-05 | 1 | -3/+4 | |
| | ||||||
* | Merge | David Heinemeier Hansson | 2010-01-03 | 1 | -14/+1 | |
|\ |