Sha256: 6a6be5fa2805ac8ff0d14c392efa63baa84384c5392fe14b2ac83ada3481a9eb
Contents?: true
Size: 750 Bytes
Versions: 33
Compression:
Stored size: 750 Bytes
Contents
# frozen_string_literal: true namespace :decidim do desc "Allows a decidim installation to check whether its locales are complete" task check_locales: :environment do FileUtils.remove_dir("tmp/decidim_repo", true) branch = ENV["TARGET_BRANCH"] || "develop" status = system("git clone --depth=1 --single-branch --branch #{branch} https://github.com/decidim/decidim tmp/decidim_repo") return unless status Dir.chdir("tmp/decidim_repo") do env = { "ENFORCED_LOCALES" => I18n.available_locales.join(","), "SKIP_NORMALIZATION" => "true" } Bundler.with_original_env do system(env, "bundle install") system(env, "bundle exec rspec spec/i18n_spec.rb") end end end end
Version data entries
33 entries across 33 versions & 1 rubygems