48 lines
1.4 KiB
Ruby
48 lines
1.4 KiB
Ruby
class Crowdin < Formula
|
|
desc "Command-line tool that allows to manage your resources with crowdin.com"
|
|
homepage "https://support.crowdin.com/cli-tool/"
|
|
url "https://github.com/crowdin/crowdin-cli/releases/download/3.7.0/crowdin-cli.zip"
|
|
sha256 "d9340be64da775c9058ce397373edc955a703d4312b51e3181dd4ffaa521342f"
|
|
license "MIT"
|
|
|
|
livecheck do
|
|
url "https://github.com/crowdin/crowdin-cli.git"
|
|
regex(/^v?(\d+(?:\.\d+)+)$/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "cc5166b01cb2c45a2b9fa34847d3071fdc8b28c855bff77dae0aef4876de9537"
|
|
end
|
|
|
|
depends_on "openjdk"
|
|
|
|
def install
|
|
libexec.install "crowdin-cli.jar"
|
|
bin.write_jar_script libexec/"crowdin-cli.jar", "crowdin"
|
|
end
|
|
|
|
test do
|
|
(testpath/"crowdin.yml").write <<~EOS
|
|
"project_id": "12"
|
|
"api_token": "54e01--your-personal-token--2724a"
|
|
"base_path": "."
|
|
"base_url": "https://api.crowdin.com" # https://{organization-name}.crowdin.com
|
|
|
|
"preserve_hierarchy": true
|
|
|
|
"files": [
|
|
{
|
|
"source" : "/t1/**/*",
|
|
"translation" : "/%two_letters_code%/%original_file_name%"
|
|
}
|
|
]
|
|
EOS
|
|
|
|
assert "Your configuration file looks good",
|
|
shell_output("#{bin}/crowdin lint")
|
|
|
|
assert "Failed to authorize in Crowdin",
|
|
shell_output("#{bin}/crowdin upload sources --config #{testpath}/crowdin.yml", 1)
|
|
end
|
|
end
|