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

Version Path
pepijnve-ivy4r-0.12.11 lib/ivy/java/all_version_matcher.rb
ivy4r-0.12.10 lib/ivy/java/all_version_matcher.rb
ivy4r-0.12.9 lib/ivy/java/all_version_matcher.rb
ivy4r-0.12.8 lib/ivy/java/all_version_matcher.rb
ivy4r-0.12.7 lib/ivy/java/all_version_matcher.rb
ivy4r-0.12.6 lib/ivy/java/all_version_matcher.rb
ivy4r-0.12.5 lib/ivy/java/all_version_matcher.rb
ivy4r-0.12.4 lib/ivy/java/all_version_matcher.rb
ivy4r-0.12.3 lib/ivy/java/all_version_matcher.rb
ivy4r-0.12.2 lib/ivy/java/all_version_matcher.rb
ivy4r-0.12.1 lib/ivy/java/all_version_matcher.rb
ivy4r-0.12.0 lib/ivy/java/all_version_matcher.rb
ivy4r-0.11.1 lib/ivy/java/all_version_matcher.rb
ivy4r-0.11.0 lib/ivy/java/all_version_matcher.rb
ivy4r-0.10.5 lib/ivy/java/all_version_matcher.rb
ivy4r-0.10.4 lib/ivy/java/all_version_matcher.rb
ivy4r-0.10.3 lib/ivy/java/all_version_matcher.rb
ivy4r-0.10.2 lib/ivy/java/all_version_matcher.rb
ivy4r-0.10.1 lib/ivy/java/all_version_matcher.rb
ivy4r-0.10.0 lib/ivy/java/all_version_matcher.rb