Sha256: b6bfdf5a1efe7fb703c10959996ff3097cdca40c4a3f7a8729fd0cd5d9e05ac3
Contents?: true
Size: 1.31 KB
Versions: 1
Compression:
Stored size: 1.31 KB
Contents
module Shipit class Status < ActiveRecord::Base include DeferredTouch STATES = %w(pending success failure error).freeze enum state: STATES.zip(STATES).to_h belongs_to :stack, required: true belongs_to :commit, required: true deferred_touch stack: :updated_at, commit: :updated_at validates :state, inclusion: {in: STATES, allow_blank: true}, presence: true after_create :enable_ci_on_stack after_commit :schedule_continuous_delivery, :broadcast_update, on: :create delegate :broadcast_update, to: :commit class << self def replicate_from_github!(stack_id, github_status) find_or_create_by!( stack_id: stack_id, state: github_status.state, description: github_status.description, target_url: github_status.target_url, context: github_status.context, created_at: github_status.created_at, ) end end def unknown? false end def ignored? stack.soft_failing_statuses.include?(context) end def group? false end def simple_state state == 'error' ? 'failure' : state end private def enable_ci_on_stack commit.stack.enable_ci! end def schedule_continuous_delivery commit.schedule_continuous_delivery end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
shipit-engine-0.15.0 | app/models/shipit/status.rb |