У меня есть место ввода как «активы»; в активах у меня есть разные сценарии кофе, меньше файлов и т. д. в разных подпапках
Я создал задание Assetfile! что-то вроде
require "rake-pipeline-web-filters"
require "rake-pipeline-web-filters/helpers"
output "public"
input "app/assets/javascripts"
match "**/*.coffee" do
coffee_script
end
## Take all JS inputs and wrap each of them in code to
## register them with the Minispade module loader.
match "**/*.js" do
minispade :module_id_generator => proc { |input| input.path.sub(/lib\//, 'timelog/').sub(/\.js$/, '') }
concat "javascripts/app.js"
end
# Take all Less inputs and compile them with Less
input "app/assets/stylesheets"
match "application.css.less" do
filter(Rake::Pipeline::Web::Filters::TiltFilter) do |input|
input.sub(/\.less/, '.css')
end
end
Вопрос
как остановить файлы из папки asswets, сбрасываемой в папку вывода, то есть public?
все виды дерьма сбрасываются в общую папку из ресурсов