class CapistranoChewy::DiffParser::Result

Attributes

added[R]
changed[R]
removed[R]

Public Class Methods

new() click to toggle source
# File lib/capistrano-chewy/diff_parser.rb, line 6
def initialize
  @removed = []
  @changed = []
  @added = []
end

Public Instance Methods

empty?() click to toggle source
# File lib/capistrano-chewy/diff_parser.rb, line 12
def empty?
  [@removed, @changed, @added].all?(&:empty?)
end