aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/rails/assets
Commit message (Collapse)AuthorAgeFilesLines
* Use .tt extension to all the template filesRafael Mendonça França2017-11-131-1/+1
| | | | | | | | Make clear that the files are not to be run for interpreters. Fixes #23847. Fixes #30690. Closes #23878.
* 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
|
* Privatize unneededly protected methods in RailtiesAkira Matsuda2016-12-251-1/+1
|
* normalizes indentation and whitespace across the projectXavier Noria2016-08-061-9/+9
|
* Use Ruby 1.9 Hash syntax in railtiesRobin Dupret2012-10-141-4/+4
|
* update Rails::Generators docs [ci skip]Francesco Rodriguez2012-10-071-1/+1
|
* Move Coffee generators and templates to Coffee Railtie and create ↵Santiago Pastorino2011-06-292-12/+2
| | | | javascript_engine ("js") for apps that remove Coffee gem
* Remove trailing white-spacesGuillermo Iguaran2011-06-051-1/+1
|
* Move SCSS generators and default templates from Rails to the Sass Railtie ↵tomhuda2011-05-242-14/+2
| | | | | | | | (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
* Merge branch 'master' of git://github.com/lifo/docrailsXavier Noria2011-05-141-3/+3
|\ | | | | | | | | | | Conflicts: actionpack/lib/action_view/helpers/date_helper.rb railties/lib/rails/generators/rails/app/templates/config/initializers/wrap_parameters.rb.tt
| * minor fix in assets usageVijay Dev2011-05-101-2/+2
| |
| * typo fixTrent Ogren2011-05-101-1/+1
| |
* | Some readme fixes as required. Arun Agrawal2011-05-101-2/+2
| |
* | s/javascript/JavaScriptVijay Dev2011-05-101-2/+2
|/
* Use proper coffee commentsDavid Heinemeier Hansson2011-04-181-3/+3
|
* Make generators more modular, add hooks and improve test suite.José Valim2011-04-171-23/+25
|
* change to use the Sass file extension .scssSebastian Martinez2011-04-141-1/+1
| | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* The controller and resource generators will now automatically produce asset ↵David Heinemeier Hansson2011-04-146-0/+71
stubs (this can be turned off with --skip-assets). These stubs will use Coffee and Sass, if those libraries are available. [DHH]