Sha256: a0c3de46dcf83de66e8e08caaceeaf0cafdb321381e1b469d9c333a119e87f00
Contents?: true
Size: 1.55 KB
Versions: 10
Compression:
Stored size: 1.55 KB
Contents
module Dpl module Providers class Transifex < Provider status :alpha description sq(<<-str) tbd str python '>= 2.7', '!= 3.0', '!= 3.1', '!= 3.2', '!= 3.3', '< 3.8' required :api_token, [:username, :password] env :transifex opt '--api_token TOKEN', 'Transifex API token', secret: true opt '--username NAME', 'Transifex username' opt '--password PASS', 'Transifex password', secret: true opt '--hostname NAME', 'Transifex hostname', default: 'www.transifex.com' opt '--cli_version VER', 'CLI version to install', default: '>=0.11' cmds status: 'tx status', push: 'tx push --source --no-interactive' msgs login: 'Writing ~/.transifexrc (user: %{username}, password: %{password})' errs push: 'Failure pushing to Transifex' RC = sq(<<-rc) [%{url}] hostname = %{url} username = %{username} password = %{password} rc def install pip_install 'transifex-client', 'tx', cli_version end def login info :login write_rc shell :status end def deploy shell :push, retry: true end private def write_rc write_file '~/.transifexrc', interpolate(RC, opts, secure: true) end def username super || 'api' end def password super || api_token end def url hostname.start_with?('https://') ? hostname : "https://#{hostname}" end end end end
Version data entries
10 entries across 10 versions & 1 rubygems