aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/generators/assets_generator_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* Adding frozen_string_literal pragma to Railties.Pat Allan2017-08-141-0/+2
|
* Revert "Merge pull request #29540 from kirs/rubocop-frozen-string"Matthew Draper2017-07-021-1/+0
| | | | | This reverts commit 3420a14590c0e6915d8b6c242887f74adb4120f9, reversing changes made to afb66a5a598ce4ac74ad84b125a5abf046dcf5aa.
* Enforce frozen string in RubocopKir Shatrov2017-07-011-0/+1
|
* applies new string literal convention in railties/testXavier Noria2016-08-061-2/+2
| | | | | The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default.
* Remove unnecessary comment.Uģis Ozols2012-05-231-1/+0
|
* Warnings removed when running with 1.9.3Arun Agrawal2011-10-091-1/+1
|
* Move Coffee generators and templates to Coffee Railtie and create ↵Santiago Pastorino2011-06-291-8/+2
| | | | javascript_engine ("js") for apps that remove Coffee gem
* Move SCSS generators and default templates from Rails to the Sass Railtie ↵tomhuda2011-05-241-3/+3
| | | | | | | | (d435726312601edb3ba6f97b34f562221f72c1f8). * Sass gem registers a compressor * Sass gem registers generators for assets and scaffold * Create a default stylesheet_engine ("css") for apps that remove the Sass gem
* Fix 'FIXME' annotation typoSebastian Martinez2011-04-191-1/+1
|
* Fix assets generators.José Valim2011-04-171-16/+10
|
* The controller and resource generators will now automatically produce asset ↵David Heinemeier Hansson2011-04-141-0/+32
stubs (this can be turned off with --skip-assets). These stubs will use Coffee and Sass, if those libraries are available. [DHH]