Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove the dependent_restrict_raises configuration if activerecord is | Rafael Mendonça França | 2012-02-01 | 1 | -1/+1 |
| | | | | not preset | ||||
* | require minitest rather than test/unit | Aaron Patterson | 2012-01-06 | 1 | -1/+1 |
| | |||||
* | convert railties to use AS::TestCase | Aaron Patterson | 2012-01-05 | 1 | -1/+2 |
| | |||||
* | Rails::Plugin has gone | Santiago Pastorino | 2012-01-03 | 1 | -14/+0 |
| | |||||
* | `rake assets:precompile` loads the application but does not initialize it. | José Valim | 2011-09-24 | 1 | -0/+9 |
| | | | | | | | | | | | | | To the app developer, this means configuration add in config/initializers/* will not be executed. Plugins developers need to special case their initializers that are meant to be run in the assets group by adding :group => :assets. Conflicts: railties/CHANGELOG railties/test/application/assets_test.rb | ||||
* | Use the proper executable on tests. | José Valim | 2011-09-12 | 1 | -1/+1 |
| | |||||
* | Create an :assets group in the Gemfile. | José Valim | 2011-06-21 | 1 | -0/+4 |
| | | | | | | | | | This group is required by default only on development and test (you can change it on config/application.rb). `rake assets:precompile` will automatically add the assets group to Rails.groups (and consequently Bundler.require) and should work transparently. | ||||
* | Merge pull request #1356 from flippingbits/fix_engine_generator | José Valim | 2011-06-09 | 1 | -1/+1 |
|\ | | | | | Fix engine's generator | ||||
| * | Use RAILS_ISOLATED_ENGINE and fix namespaced generators tests | Stefan Sprenger | 2011-06-07 | 1 | -1/+1 |
| | | |||||
| * | Don't create full Rails application if RAILS_ISOLATION_COMMAND equals engine | Stefan Sprenger | 2011-06-07 | 1 | -1/+1 |
| | | |||||
* | | Fix another CIfail :zap: :fire: Deleting RAILS_ENV from ENV doesn't produce ↵ | Jon Leighton | 2011-06-06 | 1 | -1/+2 |
| | | | | | | | | the desired result if RACK_ENV is still defined. And in any case it's better to be explicit here, so just set RALS_ENV=development. | ||||
* | | Solve the RAILS_ENV problem in the railties tests in a more generic way | Jon Leighton | 2011-06-06 | 1 | -0/+6 |
|/ | |||||
* | Require rubygems (chill out, just for rails internal tests). | José Valim | 2011-05-23 | 1 | -0/+1 |
| | |||||
* | No more need rubygems here. | Arun Agrawal | 2011-05-22 | 1 | -2/+0 |
| | |||||
* | Add some very simple docs. | José Valim | 2011-04-15 | 1 | -0/+3 |
| | |||||
* | Simplify remove_from_config. | Emilio Tagua | 2010-11-19 | 1 | -9/+5 |
| | |||||
* | Enable IdentityMap when generating new apps. | Emilio Tagua | 2010-11-19 | 1 | -0/+12 |
| | |||||
* | Fix a routing test. Reorganize middleware tests. | José Valim | 2010-10-02 | 1 | -0/+27 |
| | |||||
* | Fix running engine_test in isolation | Piotr Sarnacki | 2010-09-19 | 1 | -0/+1 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Create a deprecation behavior that triggers a notification for deprecation ↵ | wycats | 2010-06-29 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | | notices, and make the behaviors independent of the environment names. * In Rails 2.3 apps being upgraded, you will need to add the deprecation configuration to each of your environments. Failing to do so will result in the same behavior as Rails 2.3, but with an outputted warning to provide information on how to set up the setting. * New Rails 3 applications generate the setting * The notification style will send deprecation notices using ActiveSupport::Notifications. Third-party tools can listen in to these notifications to provide a streamlined view of the deprecation notices occurring in your app. * The payload in the notification is the deprecation warning itself as well as the callstack from the point that triggered the notification. | ||||
* | Add delete to middleware stack proxy. | José Valim | 2010-06-07 | 1 | -1/+1 |
| | |||||
* | Refactor tests by moving all middleware tests to the same place. | José Valim | 2010-04-26 | 1 | -0/+19 |
| | |||||
* | moved rails binary to rails gem, so rubygems can find specific versions of ↵ | Felipe Rodrigues | 2010-04-12 | 1 | -1/+1 |
| | | | | | | rails [#4382 state:resolved] Signed-off-by: wycats <wycats@gmail.com> | ||||
* | Rename config.cookie_secret to config.secret_token and pass it as ↵ | José Valim | 2010-04-05 | 1 | -1/+1 |
| | | | | configuration in request.env. This is another step forward removing global configuration. | ||||
* | Deprecated ActionController::Base.session_options= and ↵ | Carlhuda | 2010-03-04 | 1 | -1/+1 |
| | | | | ActionController::Base.session_store= in favor of a config.session_store method (which takes params) and a config.cookie_secret variable, which is used in various secret scenarios. The old AC::Base options will continue to work with deprecation warnings. | ||||
* | Fix Sam Ruby's tests and deprecation warnings | Carlhuda | 2010-03-04 | 1 | -1/+1 |
| | |||||
* | Revert "Fix test load paths for those not using bundler" | Carlhuda | 2010-02-23 | 1 | -4/+10 |
| | | | | | | This reverts commit eec2d301d4ce9df9c71c1a5aa63053eb970b6818. This commit broke tests. You cannot have a file called "bundler" on the load path. | ||||
* | Fix test load paths for those not using bundler | Joshua Peek | 2010-02-15 | 1 | -10/+4 |
| | |||||
* | fix usage examples and more to use new invocations | RomD | 2010-02-06 | 1 | -1/+1 |
| | | | | Signed-off-by: Carl Lerche <carllerche@mac.com> | ||||
* | Remove the generated gemfile in railties tests since the rails gemfile is used. | Carl Lerche | 2010-02-02 | 1 | -0/+4 |
| | |||||
* | Get rails tests running on bundler 0.9 | Carl Lerche | 2010-01-31 | 1 | -19/+7 |
| | |||||
* | Add tests for explicit engines. | José Valim | 2010-01-26 | 1 | -0/+21 |
| | |||||
* | Rename rails.rb -> rails/all.rb and rails/core.rb -> rails.rb | Carl Lerche | 2009-12-31 | 1 | -1/+1 |
| | |||||
* | tests pass with requiring the frameworks in rails.rb | Carlhuda | 2009-12-23 | 1 | -0/+8 |
| | |||||
* | Blog -> Blog::Application. Leave the toplevel module up for grabs. | Jeremy Kemper | 2009-12-21 | 1 | -1/+1 |
| | |||||
* | test.rb, dev.rb, and production.rb just reopen the Application class; no ↵ | Carlhuda | 2009-12-21 | 1 | -0/+7 |
| | | | | more hax required | ||||
* | Fix bundler environment check | Jeremy Kemper | 2009-11-14 | 1 | -1/+1 |
| | |||||
* | Refactor plugins | Yehuda Katz + Carl Lerche | 2009-11-11 | 1 | -0/+28 |
| | |||||
* | Fix railties isolated tests if bundler environment doesn't exist | Joshua Peek | 2009-11-09 | 1 | -2/+6 |
| | |||||
* | Refactored railties' isolation tests to be able to run script/* scripts. | Carl Lerche | 2009-10-21 | 1 | -4/+13 |
| | |||||
* | Have all the tests running off a single Gemfile | Yehuda Katz + Carl Lerche | 2009-10-20 | 1 | -11/+8 |
| | |||||
* | Bundle for railties tests too | Jeremy Kemper | 2009-10-19 | 1 | -12/+20 |
| | |||||
* | Remove config.gem in favor of using the bundler. This makes config/boot.rb ↵ | Carl Lerche | 2009-10-16 | 1 | -10/+13 |
| | | | | | | obsolete. The bundler library is at: http://github.com/wycats/bundler/ and is a rubygem. | ||||
* | Make the railties tests pass | Carl Lerche | 2009-10-16 | 1 | -1/+1 |
| | |||||
* | Have config/application.rb contain the application definition and require ↵ | Carl Lerche | 2009-10-15 | 1 | -2/+2 |
| | | | | that file instead of config/boot.rb or config/environment.rb in script/*. | ||||
* | Have Rails.root be based off of config.ru | Carl Lerche | 2009-10-14 | 1 | -2/+8 |
| | |||||
* | Uses fileutils | Jeremy Kemper | 2009-10-09 | 1 | -0/+2 |
| | |||||
* | Finish porting over the initializers to the app object and fix all the tests | Carl Lerche | 2009-10-08 | 1 | -0/+4 |
| | |||||
* | Start moving the initializers into the application object | Carl Lerche | 2009-10-08 | 1 | -1/+2 |
| | |||||
* | More robust console test | Joshua Peek | 2009-10-05 | 1 | -0/+4 |
| |