aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test
Commit message (Collapse)AuthorAgeFilesLines
* Refactor some railties tests structure.José Valim2010-01-254-56/+59
|
* As first step setup the load path and lazy compare middlewares.José Valim2010-01-251-20/+18
|
* Failing test for using plugin middleware in application configJoshua Peek2010-01-251-0/+20
|
* Plugins need to load before app initializersJoshua Peek2010-01-251-0/+13
|
* Add active_model/railtie back to generated boot.rb, add models back to ↵José Valim2010-01-251-0/+1
| | | | paths, load active_support/railtie since we need it and ensure default logger is set before config.
* Ensure metals and initializers in plugins are loaded.José Valim2010-01-242-1/+31
|
* Add tests for plugin sanity check.José Valim2010-01-241-0/+24
|
* Ensure environment config has higher priority than application ones.José Valim2010-01-241-1/+12
|
* Ensure namespaced controllers in engines work.José Valim2010-01-241-1/+31
|
* Add I18n tests to engines.José Valim2010-01-242-56/+38
|
* Load deprecated tasks for plugins.José Valim2010-01-241-0/+34
|
* Make plugin generator compatible with new schema.José Valim2010-01-241-1/+1
|
* Solve some pendencies.José Valim2010-01-242-3/+4
|
* Move console stuff to its own directory.José Valim2010-01-231-2/+2
|
* Merge branch 'master' into appJosé Valim2010-01-232-2/+2
|\ | | | | | | | | Conflicts: railties/lib/rails/application.rb
| * I removed the rdoc task from plugin RakefileJoshua Peek2010-01-221-1/+1
| |
| * Delegate App calls to instanceJoshua Peek2010-01-221-1/+1
| |
| * Add test case for load initializers before routing behavior.Prem Sichanugrist2010-01-221-0/+28
| | | | | | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* | Move configuration to subfolders.José Valim2010-01-232-9/+9
| |
* | First steps into making Plugin < Engine.José Valim2010-01-231-0/+7
| |
* | Ensure user set load paths have higher preference and move Bootstrap inside ↵José Valim2010-01-232-2/+2
| | | | | | | | Application.
* | Get rid of initializers global and create i18n railtie.José Valim2010-01-235-48/+16
| |
* | Got tests working once again.José Valim2010-01-223-23/+11
| |
* | Add view paths to Engine setup.José Valim2010-01-221-2/+2
| |
* | Add test case for load initializers before routing behavior.Prem Sichanugrist2010-01-211-0/+28
|/ | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Make filter parameters based on request, so they can be modified for ↵José Valim2010-01-211-2/+2
| | | | anything in the middleware stack.
* Give higher priority to rails generators.José Valim2010-01-213-0/+9
|
* Default to sync instrumentation.José Valim2010-01-212-36/+11
|
* Add deprecation warning for calling filter_parameter_logging ↵Prem Sichanugrist2010-01-211-0/+12
| | | | | | ActionController::Base, and allow it to be configured in config.filter_parameters Signed-off-by: José Valim <jose.valim@gmail.com>
* Allow railties to specify generators paths.José Valim2010-01-192-0/+23
|
* Logging thread should not die on logging errors.José Valim2010-01-191-0/+14
|
* `script/generate mailer Notifier` will now create a mailer at app/mailers.José Valim2010-01-191-4/+4
|
* Get generators tests running on Ruby 1.9.1José Valim2010-01-1921-31/+53
|
* Improve generators help.José Valim2010-01-181-8/+9
|
* More cleaning up on rails generators load path.José Valim2010-01-186-71/+46
|
* Generators load path now will be Ruby load path. If you want to use ↵José Valim2010-01-1820-21/+20
| | | | rspec:install generator, you need generators/rspec/install_generator in your load path.
* Automatically remove :generators: from namespaces.José Valim2010-01-183-8/+8
|
* Ensure generators can be invoked by their shortcut and remove attr_reader tasks.José Valim2010-01-182-2/+15
|
* Plugin generator should use templates.José Valim2010-01-171-0/+15
|
* Take --skip-activerecord into account boot.rb requires. [#3711 status:resolved]Rizwan Reza2010-01-171-5/+4
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Add notifications to default middleware stack and update subscriber tests.José Valim2010-01-173-4/+5
|
* Use backtrace cleaner for dev mode exception pageJoshua Peek2010-01-161-2/+2
|
* Cookies middlewareJoshua Peek2010-01-161-0/+1
|
* Move Flash into middlewareJoshua Peek2010-01-151-0/+1
|
* Make HEAD method masquerade as GET so requests are routed correctlyJoshua Peek2010-01-151-1/+1
|
* Bundle automatically if --dev or --edge is given as option.José Valim2010-01-151-3/+5
|
* Fix an issue where log was not being tailed in the first request.José Valim2010-01-151-3/+2
|
* LogTailer should be invoked after all logs in threads were flushed.José Valim2010-01-151-0/+15
|
* Rails::Subscriber is now responsible for flushing all loggers it's ↵José Valim2010-01-151-1/+22
| | | | responsible for.
* Create Rails::Subscriber::TestHelper and use it to make ActiveRecord ↵José Valim2010-01-131-33/+16
| | | | subscriber tests run in both sync and async scenarios.