Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Adding frozen_string_literal pragma to Railties. | Pat Allan | 2017-08-14 | 1 | -0/+2 |
| | |||||
* | Revert "Merge pull request #29540 from kirs/rubocop-frozen-string" | Matthew Draper | 2017-07-02 | 1 | -1/+0 |
| | | | | | This reverts commit 3420a14590c0e6915d8b6c242887f74adb4120f9, reversing changes made to afb66a5a598ce4ac74ad84b125a5abf046dcf5aa. | ||||
* | Enforce frozen string in Rubocop | Kir Shatrov | 2017-07-01 | 1 | -0/+1 |
| | |||||
* | improve error message when include assertions fail | Michael Grosser | 2016-09-16 | 1 | -2/+2 |
| | | | | | | assert [1, 3].includes?(2) fails with unhelpful "Asserting failed" message assert_includes [1, 3], 2 fails with "Expected [1, 3] to include 2" which makes it easier to debug and more obvious what went wrong | ||||
* | Remove unused boot_rails method and it's usage | Prathamesh Sonpatki | 2016-07-04 | 1 | -1/+0 |
| | | | | | - The `boot_rails` method from abstract_unit.rb is empty after 2abcdfd978fdcd491576a237e8c6b. - So let's remove it and its usage. | ||||
* | Allow Pathnames to be added to eager load paths | Mike Pack | 2013-11-11 | 1 | -0/+14 |
| | |||||
* | Calls to the application constant have been refactored to use | wangjohn | 2013-06-10 | 1 | -3/+3 |
| | | | | | Rails.application when drawing routes and creating other configurations on the application. | ||||
* | initialize instead of assert to fix warning | Vipul A M | 2013-04-11 | 1 | -0/+1 |
| | |||||
* | Fix some typos | Vipul A M | 2013-03-24 | 1 | -1/+1 |
| | |||||
* | Revert "Deprecate the `eager_load_paths` configuration" | Andrew White | 2013-02-19 | 1 | -1/+1 |
| | | | | | | | | | | | Because of the possibility of lib being unintentionally eager loaded it's been agreed that we'll leave autoload paths and eager load paths separate for Rails 4.0. This reverts commit 0757b3388ffe4f44b60de950d40e18ef05055931. Conflicts: railties/CHANGELOG.md | ||||
* | Deprecate the `eager_load_paths` configuration | Andrew White | 2013-01-24 | 1 | -1/+1 |
| | | | | | | | | | | Since the default in Rails 4.0 is to run in 'threadsafe' mode we need to eager load all of the paths in `autoload_paths` so we alias `eager_load_paths` to it. This may have unintended consequences if you have added 'lib' to `autoload_paths` such as loading unneeded code or code intended only for development and/or test environments. If this applies to your application you should thoroughly check what is being eager loaded. | ||||
* | convert railties to use AS::TestCase | Aaron Patterson | 2012-01-05 | 1 | -1/+1 |
| | |||||
* | Solve the RAILS_ENV problem in the railties tests in a more generic way | Jon Leighton | 2011-06-06 | 1 | -3/+1 |
| | |||||
* | load_path_test.rb is also dependent on RAILS_ENV=development | Jon Leighton | 2011-06-05 | 1 | -0/+6 |
| | |||||
* | Clear DescendantsTracker on each request. | José Valim | 2010-06-19 | 1 | -1/+1 |
| | |||||
* | Add lib to load paths when application is inherited to be able to load lib ↵ | José Valim | 2010-06-02 | 1 | -0/+17 |
| | | | | code during configuration. | ||||
* | Add more tests to some key points in Railties. | José Valim | 2010-01-28 | 1 | -2/+14 |
| | | | | 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/+62 |
initializers to application folder. |