mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-01 03:29:09 +01:00
11 lines
261 B
Ruby
11 lines
261 B
Ruby
namespace :deploy do
|
|
task :i18n_js do
|
|
on roles(:all) do
|
|
within release_path do
|
|
with rails_env: fetch(:rails_env), rails_groups: fetch(:rails_assets_groups) do
|
|
execute :rake, "i18n:js:export"
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|