Sha256: f971e95336caeb25bee3c9b069e63e5929b6fabd7b568c7bb719cc1d9cd7874e

Contents?: true

Size: 587 Bytes

Versions: 4

Compression:

Stored size: 587 Bytes

Contents

module Indexer

  # Dependency class is essentially the same as {Requirement}, but
  # a dependency represents a binary package requirement that would
  # need to be installed using an operating systems own package
  # management system, or installed manually.
  #
  # Dependency is a sublcass of {Requirement}. It only exists as a separate
  # class becuase an OS package managers MIGHT require some additional
  # information --but as of yet that's not the case.
  #
  # TODO: Why not merge the two and add a field to distinguish them?
  #
  class Dependency < Requirement
  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
indexer-0.3.1 lib/indexer/components/dependency.rb
indexer-0.3.0 lib/indexer/components/dependency.rb
indexer-0.2.0 lib/indexer/components/dependency.rb
indexer-0.1.0 lib/indexer/components/dependency.rb