module Syskit::Actions::Profile::Tag

Public Instance Methods

can_merge?(other) click to toggle source
Calls superclass method
# File lib/syskit/actions/profile.rb, line 85
def can_merge?(other)
    return false if !super

    other.kind_of?(Tag) &&
        other.model.tag_name == model.tag_name &&
        other.model.profile == model.profile
end