Sha256: 6f828e5efe7ca2d912268f3d6260ab3789fb5535a4fb1fa25f28795e0a2f2c73
Contents?: true
Size: 517 Bytes
Versions: 15
Compression:
Stored size: 517 Bytes
Contents
module Shipit class DeployCommands < TaskCommands def steps deploy_spec.deploy_steps! end def env commit = @task.until_commit super.merge( 'SHA' => commit.sha, 'REVISION' => commit.sha, 'DIFF_LINK' => diff_url, ) end protected def diff_url Shipit::GithubUrlHelper.github_commit_range_url(@stack, *@task.commit_range) end def permalink Shipit::Engine.routes.url_helpers.stack_deploy_url(@stack, @task) end end end
Version data entries
15 entries across 15 versions & 1 rubygems