Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix testcase an error on ruby 1.8.x. | kennyj | 2011-12-09 | 1 | -2/+3 |
| | | | | | | In Ruby 1.8.x, config.encoding sets $KCODE. Therefore, the possible values are UTF8, SJIS, or EUC. And, if we set SJIS, we'll has the error. Because some rails sources are written in utf-8 encoding. | ||||
* | Assign config.encoding to AD::Response.default_charset at the initialization ↵ | kennyj | 2011-12-07 | 1 | -0/+6 |
| | | | | time. | ||||
* | Solve the RAILS_ENV problem in the railties tests in a more generic way | Jon Leighton | 2011-06-06 | 1 | -3/+1 |
| | |||||
* | framework_test.rb also dependent on RAILS_ENV=development | Arun Agrawal | 2011-06-06 | 1 | -0/+6 |
| | |||||
* | Fix tests to reflect IdentityMap no longer default | David Lee | 2011-05-10 | 1 | -1/+1 |
| | | | | Broke in 0e1dcae1857db4f6721561caff38d8be748d0b40 | ||||
* | Fix typo. | Emilio Tagua | 2010-11-19 | 1 | -1/+1 |
| | |||||
* | Use IdentityMap middleware to flush map on each request. | Emilio Tagua | 2010-11-19 | 1 | -1/+1 |
| | |||||
* | Add config.action_controller.include_all_helpers, by default it is set to true. | Piotr Sarnacki | 2010-11-18 | 1 | -0/+60 |
| | | | | | | | In older rails versions there was a way to use only helpers from helper file corresponding to current controller and you could also include all helpers by saying 'helper :all' in controller. This config allows to return to older behavior by setting it to false. | ||||
* | Merge remote branch 'drogus/engines' | wycats | 2010-09-11 | 1 | -1/+1 |
|\ | |||||
| * | Change app to main_app in mounted_helpers | Piotr Sarnacki | 2010-09-08 | 1 | -1/+1 |
| | | |||||
* | | Add configuration option for tld length | Simon Jefford | 2010-09-09 | 1 | -0/+7 |
|/ | |||||
* | mounted helpers should be included in ActionMailer | Piotr Sarnacki | 2010-09-03 | 1 | -0/+1 |
| | |||||
* | Revert "Just add connection management middleware if running in a concurrent ↵ | Jeremy Kemper | 2010-08-20 | 1 | -11/+1 |
| | | | | | | environment." This reverts commit 6b29dc876fe185881d46731c3ae170478a3828fe. | ||||
* | Just add connection management middleware if running in a concurrent ↵ | José Valim | 2010-07-12 | 1 | -1/+11 |
| | | | | environment. | ||||
* | Add a test to ensure url helpers are not action methods in ActionMailer. | José Valim | 2010-07-07 | 1 | -0/+19 |
| | |||||
* | Avoid calls to Rails::Application since this is not the official API. | José Valim | 2010-07-01 | 1 | -1/+1 |
| | | | | Your application should *always* reference your application const (as Blog::Application) and Rails.application should be used just internally. | ||||
* | adding missing assertion and fixing the test | Neeraj Singh | 2010-06-24 | 1 | -2/+4 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | fixing test by replacing assert with assert_equal | Neeraj Singh | 2010-06-24 | 1 | -1/+1 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Array#sample now exists, so test for #forty_two instead | Jeremy Kemper | 2010-06-24 | 1 | -1/+1 |
| | |||||
* | removes Array#random_element and backports Array#sample from Ruby 1.9, ↵ | Xavier Noria | 2010-06-05 | 1 | -2/+2 |
| | | | | thanks to Marc-Andre Lafortune | ||||
* | Renames Array#rand -> Array#random_element | Rizwan Reza | 2010-05-17 | 1 | -2/+2 |
| | | | | Signed-off-by: Xavier Noria <fxn@hashref.com> | ||||
* | Deprecated ActionController::Base.session_options= and ↵ | Carlhuda | 2010-03-04 | 1 | -2/+2 |
| | | | | 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 | -2/+2 |
| | |||||
* | Fix a test that assumes that defined?(ActiveRecord) == ↵ | Carlhuda | 2010-03-02 | 1 | -1/+1 |
| | | | | defined?(ActiveRecord::Base) | ||||
* | Add a test for default_url_options in AM. | José Valim | 2010-02-21 | 1 | -0/+11 |
| | |||||
* | Add more tests to some key points in Railties. | José Valim | 2010-01-28 | 1 | -0/+6 |
| | | | | Signed-off-by: Carl Lerche <carllerche@mac.com> | ||||
* | Refactor railties test, break huge files in smaller chunks and move ↵ | José Valim | 2010-01-26 | 1 | -0/+80 |
initializers to application folder. |