class Builderator::Control::Version::SCM::Commit

An SCM commit entity

Attributes

id[R]
message[R]
tags[R]

Public Class Methods

new(match) click to toggle source
# File lib/builderator/control/version/scm.rb, line 88
def initialize(match)
  @id = match[:id]
  @message = match[:message]
  @tags = match.fetch(:tags, [])
end