mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-01 07:29:07 +01:00
9 lines
221 B
Ruby
9 lines
221 B
Ruby
namespace :deploy do
|
|
task :i18n_js 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
|