mirror of
https://github.com/ditkrg/rswag.git
synced 2026-01-22 22:06:43 +00:00
13 lines
306 B
Ruby
13 lines
306 B
Ruby
namespace :rswag do
|
|
namespace :ui do
|
|
|
|
desc 'TODO'
|
|
task :copy_assets, [ :dest ] do |t, args|
|
|
dest = args[:dest]
|
|
FileUtils.rm_r(dest, force: true)
|
|
FileUtils.mkdir_p(dest)
|
|
FileUtils.cp_r(Dir.glob("#{Rswag::Ui.config.assets_root}/{*.js,*.png,*.css}"), dest)
|
|
end
|
|
end
|
|
end
|