1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Added method to create vendor/assets/javascripts, added it to methods called within vendor method

This commit is contained in:
Sasha Gerrand 2011-10-11 17:04:24 +11:00
parent fcb70f364c
commit 43c01ef8b1

View file

@ -122,10 +122,15 @@ module Rails
end
def vendor
vendor_javascripts
vendor_stylesheets
vendor_plugins
end
def vendor_javascripts
empty_directory_with_gitkeep "vendor/assets/javascripts"
end
def vendor_stylesheets
empty_directory_with_gitkeep "vendor/assets/stylesheets"
end