mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #1481 from arunagw/lib_assets
Generating /lib/assets for assets
This commit is contained in:
commit
449cc3e999
2 changed files with 3 additions and 1 deletions
|
@ -88,6 +88,7 @@ module Rails
|
|||
def lib
|
||||
empty_directory "lib"
|
||||
empty_directory_with_gitkeep "lib/tasks"
|
||||
empty_directory_with_gitkeep "lib/assets"
|
||||
end
|
||||
|
||||
def log
|
||||
|
|
|
@ -10,6 +10,7 @@ DEFAULT_APP_FILES = %w(
|
|||
config.ru
|
||||
app/assets/javascripts
|
||||
app/assets/stylesheets
|
||||
app/assets/images
|
||||
app/controllers
|
||||
app/helpers
|
||||
app/mailers
|
||||
|
@ -22,8 +23,8 @@ DEFAULT_APP_FILES = %w(
|
|||
doc
|
||||
lib
|
||||
lib/tasks
|
||||
lib/assets
|
||||
log
|
||||
app/assets/images
|
||||
script/rails
|
||||
test/fixtures
|
||||
test/functional
|
||||
|
|
Loading…
Reference in a new issue