Sha256: 0a7dc0ec2c3b7baf9ccfa8a56d2a68e0f6ed24ebb6b3247198c6c906172b1d0e
Contents?: true
Size: 681 Bytes
Versions: 92
Compression:
Stored size: 681 Bytes
Contents
# frozen_string_literal: true require_relative 'action' module Gem::Resolver::Molinillo class DependencyGraph # @!visibility private # @see DependencyGraph#tag class Tag < Action # @!group Action # (see Action.action_name) def self.action_name :tag end # (see Action#up) def up(graph) end # (see Action#down) def down(graph) end # @!group Tag # @return [Object] An opaque tag attr_reader :tag # Initialize an action to tag a state of a dependency graph # @param [Object] tag an opaque tag def initialize(tag) @tag = tag end end end end
Version data entries
92 entries across 92 versions & 1 rubygems