Sha256: 966547e76a6d39e88c471de0cb136a9463b611e7bcf9e15b56059870618a6fca
Contents?: true
Size: 430 Bytes
Versions: 31
Compression:
Stored size: 430 Bytes
Contents
module Hatchet # used for deploying a test app to heroku via git class GitApp < App def git_repo "https://git.heroku.com/#{name}.git" end def push_without_retry! output = `git push #{git_repo} master 2>&1` if !$?.success? raise FailedDeploy.new(self, "Buildpack: #{@buildpack.inspect}\nRepo: #{git_repo}\n#{output}") unless @allow_failure end return output end end end
Version data entries
31 entries across 31 versions & 1 rubygems