181cd299f9
Adds a rubocop rule (with autocorrect) to ensure line break after guard clauses.
26 lines
521 B
Ruby
26 lines
521 B
Ruby
module Gitlab
|
|
class ChangesList
|
|
include Enumerable
|
|
|
|
attr_reader :raw_changes
|
|
|
|
def initialize(changes)
|
|
@raw_changes = changes.is_a?(String) ? changes.lines : changes
|
|
end
|
|
|
|
def each(&block)
|
|
changes.each(&block)
|
|
end
|
|
|
|
def changes
|
|
@changes ||= begin
|
|
@raw_changes.map do |change|
|
|
next if change.blank?
|
|
|
|
oldrev, newrev, ref = change.strip.split(' ')
|
|
{ oldrev: oldrev, newrev: newrev, ref: ref }
|
|
end.compact
|
|
end
|
|
end
|
|
end
|
|
end
|