Sha256: 527e7f837299b635f04f908a08f7942d8665eae1fcb82af85682ee179573611d
Contents?: true
Size: 584 Bytes
Versions: 28
Compression:
Stored size: 584 Bytes
Contents
module Ivy # Matcher that accepts all versions of the same module as a match, i.e. # only checking that the module is the same. class IvyAllVersionMatcher include Java::OrgApacheIvyPluginsVersion::VersionMatcher def is_dynamic(askedMrid) false end def accept(askedMrid, foundMrid) true end def need_module_descriptor(askedMrid, foundMrid) false end def accept(askedMrid, foundMD) true end def compare(askedMrid, foundMrid, staticComparator) 0 end def getName self.class end end end
Version data entries
28 entries across 28 versions & 2 rubygems