Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix style | schneems | 2016-08-30 | 1 | -26/+26 |
| | |||||
* | Address comment via @dhh, better option naming | schneems | 2016-08-30 | 1 | -4/+4 |
| | |||||
* | Thanks rubocop | schneems | 2016-08-29 | 1 | -1/+1 |
| | |||||
* | Favor `public_folder: true` over `public_*` | schneems | 2016-08-29 | 1 | -25/+44 |
| | | | | Adding all those `public_*` methods is a bit heavy handed, we can change the API to instead use `public_folder: true`. Change was pretty easy since it was already implemented that way. | ||||
* | Fix formatting | schneems | 2016-08-29 | 1 | -3/+3 |
| | |||||
* | Add `public_*` helpers to all the `_tag` methods. | schneems | 2016-08-29 | 1 | -9/+15 |
| | |||||
* | Test `public_` methods. | schneems | 2016-08-29 | 1 | -0/+72 |
| | |||||
* | Add three new rubocop rules | Rafael Mendonça França | 2016-08-16 | 1 | -1/+1 |
| | | | | | | | | Style/SpaceBeforeBlockBraces Style/SpaceInsideBlockBraces Style/SpaceInsideHashLiteralBraces Fix all violations in the repository. | ||||
* | applies new string literal convention in railties/test | Xavier Noria | 2016-08-06 | 1 | -4/+4 |
| | | | | | The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default. | ||||
* | Remove unused boot_rails method and it's usage | Prathamesh Sonpatki | 2016-07-04 | 1 | -2/+0 |
| | | | | | - The `boot_rails` method from abstract_unit.rb is empty after 2abcdfd978fdcd491576a237e8c6b. - So let's remove it and its usage. | ||||
* | Be consistent in testing outputs from railties test and use /bin/rails ↵ | Vipul A M | 2016-01-24 | 1 | -1/+1 |
| | | | | | | everywhere(the default behaviour now) instead of mix of /bin/rake /bin/rails everywhere [Ryo Hashimoto & Vipul A M] | ||||
* | Use sprockets 3 in the Rails 5 release | Rafael Mendonça França | 2015-12-16 | 1 | -2/+3 |
| | |||||
* | Eliminate overlapping `app/assets` load path | Jeremy Daer | 2015-09-29 | 1 | -4/+14 |
| | | | | | | | | | | * Move `app/assets/manifest.js` to `app/assets/config/manifest.js`. Avoid the suggestion that you can/should deep-link `stylesheets/foo`. * Pull in all toplevel stylesheets and JavaScripts, not just `application.js` and `.css`. Demonstrate how to use `link_directory` with a specified `.js`/`.css` type. * Fix RAILS_ENV handling in assets tests. * Shush warnings spam from third-party libs that distract from tests. | ||||
* | Migrate to Sprockets 4. | Andrei Istratii | 2015-08-19 | 1 | -3/+2 |
| | |||||
* | tests, railties tests should use `bin/` executables when possible. | Yves Senn | 2015-06-30 | 1 | -1/+1 |
| | | | | | We recommend using the `bin/` executables in our docs and guides. Let's make sure that our tests execute the same code path. | ||||
* | Test using sprockets 3 | Rafael Mendonça França | 2015-03-29 | 1 | -2/+2 |
| | |||||
* | Calls to the application constant have been refactored to use | wangjohn | 2013-06-10 | 1 | -1/+1 |
| | | | | | Rails.application when drawing routes and creating other configurations on the application. | ||||
* | Fixed typo in railties/test | Prathamesh Sonpatki | 2013-03-25 | 1 | -1/+1 |
| | |||||
* | Use Ruby 1.9 Hash syntax in railties | Robin Dupret | 2012-10-14 | 1 | -2/+2 |
| | |||||
* | Tighten up asset precompile tests | Jeremy Kemper | 2012-10-12 | 1 | -3/+2 |
| | |||||
* | Minor test refactoring: Use add_to_env instead of an initializer | Guillermo Iguaran | 2012-10-09 | 1 | -1/+1 |
| | |||||
* | Remove default match without specified method | Jose and Yehuda | 2012-04-24 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | In the current router DSL, using the +match+ DSL method will match all verbs for the path to the specified endpoint. In the vast majority of cases, people are currently using +match+ when they actually mean +get+. This introduces security implications. This commit disallows calling +match+ without an HTTP verb constraint by default. To explicitly match all verbs, this commit also adds a :via => :all option to +match+. Closes #5964 | ||||
* | Fix a couple more script[type=text/javascript] tests affected by #5748 | Jeremy Kemper | 2012-04-08 | 1 | -4/+4 |
| | |||||
* | convert railties to use AS::TestCase | Aaron Patterson | 2012-01-05 | 1 | -1/+1 |
| | |||||
* | Warnings removed for "assert_match /" Please do | Arun Agrawal | 2011-09-04 | 1 | -4/+4 |
| | | | | not add more.! | ||||
* | Fix asset debugging tests to reflect last changes in 3-1-stable | Guillermo Iguaran | 2011-08-31 | 1 | -9/+18 |
| | |||||
* | Fix failing asset debug test under 1.8 | Guillermo Iguaran | 2011-08-25 | 1 | -1/+1 |
| | |||||
* | Move asset debugging tests into a separate test case | Daniel Schierbeck | 2011-08-25 | 1 | -0/+56 |
Also: - Refactor AssetDebuggingTest. - Use the %r regexp syntax. That way we don't need to escape the /'s. |