Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added config.app_generators to allow configuring application's generators ↵ | Piotr Sarnacki | 2010-09-30 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | from railties. With config.generators becomes a way to configure generators for current instance only. For example: module Blog class Engine < Rails::Engine config.generators do |g| g.orm :active_record end config.app_generators do |g| g.test_framework :rspec end end end such definition sets :active_record as orm for engine and :rspec as test_framework for application. The values set with app_generators can be overwritten in application using config.generators as you would normally do: module MyApp class Application < Rails::Application config.generators do |g| g.test_framework :test_unit end end end | ||||
* | Move application configuration to the application configuration object, ↵ | José Valim | 2010-03-26 | 1 | -2/+0 |
| | | | | remove railtie_name and engine_name and allow to set the configuration object. | ||||
* | Resolve test/unit load ordering by removing backtrace filter from boot ↵ | Jeremy Kemper | 2010-02-11 | 1 | -9/+1 |
| | | | | initializers | ||||
* | Check if Test::Unit is defined before adding backtrace filter. | José Valim | 2010-02-07 | 1 | -1/+1 |
| | |||||
* | Add backtrace cleaner on test unit railtie. | José Valim | 2010-02-07 | 1 | -0/+8 |
| | |||||
* | Only load testing tasks if test unit is being used. | José Valim | 2010-01-29 | 1 | -2/+2 |
| | |||||
* | Cleanup the test_unit generator move into the railtie | Carl Lerche | 2010-01-28 | 1 | -1/+7 |
| | |||||
* | Test::Unit Railtie | Carlhuda | 2010-01-28 | 1 | -0/+11 |