Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Don't require initializer.rb in core.rb | Carl Lerche | 2009-12-28 | 1 | -10/+18 |
| | |||||
* | Merge remote branch 'origin/master' | Carlhuda | 2009-12-23 | 1 | -1/+1 |
|\ | | | | | | | | | Conflicts: railties/lib/rails/application.rb | ||||
| * | Fix reference to Application#configuration to use #config | Jeremy Kemper | 2009-12-23 | 1 | -1/+1 |
| | | |||||
| * | Isolation tests intentionally avoid loading any state (because they're often ↵ | Carlhuda | 2009-12-23 | 1 | -3/+3 |
| | | | | | | | | testing things that have their own load path semantics that should not be polluted), so rack/test is not yet on the load path. Moving require "rack/test" into the setup means and after boot_rails means that it'll be required after the laod path has been altered to add in the Rails vendor/gems | ||||
* | | Rackup config.ru from the correct directory | Carlhuda | 2009-12-23 | 1 | -2/+4 |
| | | |||||
* | | Require active_support/all unless specifically requested to be left out. | Carlhuda | 2009-12-23 | 1 | -0/+6 |
| | | |||||
* | | Finish moving config.frameworks-dependent code to the framework plugin | Carlhuda | 2009-12-23 | 1 | -0/+2 |
| | | |||||
* | | Make /rails/info/properties work again. Also, the mocked up tests were ↵ | Carlhuda | 2009-12-23 | 1 | -0/+5 |
| | | | | | | | | passing so we added a test that actually tested this functionality. | ||||
* | | Isolation tests intentionally avoid loading any state (because they're often ↵ | Carlhuda | 2009-12-23 | 1 | -3/+3 |
| | | | | | | | | testing things that have their own load path semantics that should not be polluted), so rack/test is not yet on the load path. Moving require "rack/test" into the setup means and after boot_rails means that it'll be required after the laod path has been altered to add in the Rails vendor/gems | ||||
* | | Moving out some framework specific initializers into the framework libraries. | Carlhuda | 2009-12-23 | 1 | -23/+17 |
| | | |||||
* | | tests pass with requiring the frameworks in rails.rb | Carlhuda | 2009-12-23 | 4 | -61/+38 |
|/ | |||||
* | Merge branch 'master' of github.com:rails/rails | Joshua Peek | 2009-12-21 | 3 | -89/+87 |
|\ | | | | | | | | | | | Conflicts: railties/test/initializer/initialize_i18n_test.rb railties/test/initializer/path_test.rb | ||||
| * | Blog -> Blog::Application. Leave the toplevel module up for grabs. | Jeremy Kemper | 2009-12-21 | 1 | -1/+1 |
| | | |||||
* | | Update routes.rb template to use App name | Joshua Peek | 2009-12-21 | 2 | -7/+17 |
|/ | |||||
* | Default route was removed from default route config, patch up failing tests. | Joshua Peek | 2009-12-21 | 1 | -0/+18 |
| | |||||
* | Add the ability for plugins to set default configuration settings. | Carl Lerche | 2009-12-15 | 2 | -0/+22 |
| | |||||
* | Procs don't call themselves | Joshua Peek | 2009-12-15 | 1 | -0/+32 |
| | | | | Fixes dev mode reloading [#3574 state:resolved] | ||||
* | Fix loading plugin and engine route sets | Joshua Peek | 2009-12-14 | 1 | -0/+38 |
| | |||||
* | Remove assert_raises usage that only test-unit 1 supports. Breaks minitest ↵ | Jeremy Kemper | 2009-12-06 | 1 | -2/+2 |
| | | | | and test-unit 2. | ||||
* | Add support for bare ActiveSupport via config.active_support.bare | Carlhuda | 2009-12-02 | 2 | -1/+12 |
| | |||||
* | Remove global Rails initializers | Carlhuda | 2009-12-02 | 2 | -25/+17 |
| | |||||
* | Some basic route discovery tests | Joshua Peek | 2009-12-01 | 1 | -0/+85 |
| | |||||
* | Notifications: extract central Notifier, cordon off the internal Fanout ↵ | Jeremy Kemper | 2009-11-28 | 1 | -24/+6 |
| | | | | implementation, and segregate instrumentation concerns | ||||
* | Fix the rackup test to correctly use Rack::Builder.parse_file | Carl Lerche | 2009-11-25 | 1 | -1/+2 |
| | |||||
* | Have script/* and Rakefile use the application object | Carlhuda | 2009-11-24 | 1 | -17/+4 |
| | |||||
* | Updates notifications tests in railties to reflect changes to the ↵ | Carlhuda | 2009-11-23 | 1 | -1/+3 |
| | | | | notifications API | ||||
* | Refactor plugins | Yehuda Katz + Carl Lerche | 2009-11-11 | 1 | -117/+0 |
| | |||||
* | Configure generator when needed rather than during initialization | Jeremy Kemper | 2009-11-03 | 1 | -1/+2 |
| | |||||
* | Pass config.generators options along when RAILS_GENERATORS is set and show ↵ | José Valim | 2009-11-03 | 1 | -2/+4 |
| | | | | | | --force-plural message just once. Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | ||||
* | Fix broken tests | Jeremy Kemper | 2009-10-27 | 1 | -1/+1 |
| | |||||
* | Have all the tests running off a single Gemfile | Yehuda Katz + Carl Lerche | 2009-10-20 | 1 | -20/+0 |
| | |||||
* | Remove config.gem in favor of using the bundler. This makes config/boot.rb ↵ | Carl Lerche | 2009-10-16 | 5 | -2/+4 |
| | | | | | | obsolete. The bundler library is at: http://github.com/wycats/bundler/ and is a rubygem. | ||||
* | Use Rails.application where we want a valid rack app | Joshua Peek | 2009-10-16 | 1 | -1/+1 |
| | |||||
* | Use Rails.initialize! where we just want to run the initializers and aren't ↵ | Joshua Peek | 2009-10-16 | 3 | -28/+28 |
| | | | | concerned about the config | ||||
* | Deprecate RAILS_ROOT in favor of Rails.root (which proxies to the ↵ | Carl Lerche | 2009-10-16 | 4 | -20/+47 |
| | | | | application's object root) | ||||
* | Remove framework subscriber tests which depends on AR, which isn't loaded | Jeremy Kemper | 2009-10-15 | 1 | -4/+0 |
| | |||||
* | Merge branch 'master' into orchestra | Jeremy Kemper | 2009-10-15 | 3 | -3/+31 |
|\ | |||||
| * | Have config/application.rb contain the application definition and require ↵ | Carl Lerche | 2009-10-15 | 3 | -3/+31 |
| | | | | | | | | that file instead of config/boot.rb or config/environment.rb in script/*. | ||||
* | | Renamed Orchestra to Notifications once again [#3321 state:resolved] | José Valim | 2009-10-15 | 1 | -8/+8 |
| | | |||||
* | | Make Orchestra specs run on isolation. | José Valim | 2009-10-15 | 1 | -1/+2 |
| | | |||||
* | | Configure Orchestra on initialization. | José Valim | 2009-10-15 | 1 | -0/+49 |
|/ | |||||
* | Have Rails.root be based off of config.ru | Carl Lerche | 2009-10-14 | 1 | -2/+34 |
| | |||||
* | Finish porting over the initializers to the app object and fix all the tests | Carl Lerche | 2009-10-14 | 2 | -1/+18 |
| | |||||
* | Finish porting over the initializers to the app object and fix all the tests | Carl Lerche | 2009-10-08 | 3 | -5/+227 |
| | |||||
* | Even more initializers ported over | Carl Lerche | 2009-10-08 | 1 | -0/+7 |
| | |||||
* | Ported over more initializers | Carl Lerche | 2009-10-08 | 1 | -0/+7 |
| | |||||
* | Moving more initializers into the application object | Carl Lerche | 2009-10-08 | 3 | -26/+115 |
| | |||||
* | Start moving the initializers into the application object | Carl Lerche | 2009-10-08 | 3 | -2/+61 |
| | |||||
* | Yank FCGI Handler from core | Joshua Peek | 2009-10-05 | 1 | -290/+0 |
| | | | http://github.com/rails/fcgi_handler | ||||
* | Rewrite FCGI handler test | Joshua Peek | 2009-10-05 | 1 | -0/+290 |
| |