Sha256: 712c8c3372efb607b5b06892fd1242f19c0c804286ad8f922249b90fcc521d05

Contents?: true

Size: 334 Bytes

Versions: 1

Compression:

Stored size: 334 Bytes

Contents

class Rollback < Deploy
  def rollback?
    true
  end

  def commits
    return Commit.none unless stack

    @commits ||= stack.commits.reachable.newer_than(until_commit_id).until(since_commit_id).order(id: :asc)
  end

  def commit_range
    [until_commit, since_commit]
  end

  def to_partial_path
    'deploys/deploy'
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
shipit-engine-0.0.1.pre app/models/rollback.rb