Class: Build::Dependency::Provision

Inherits:
Struct
  • Object
show all
Defined in:
lib/build/dependency/provider.rb

Overview

A provision is a thing which satisfies a dependency.

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#nameObject

Returns the value of attribute name

Returns:

  • (Object)

    the current value of name



30
31
32
# File 'lib/build/dependency/provider.rb', line 30

def name
  @name
end

#providerObject

Returns the value of attribute provider

Returns:

  • (Object)

    the current value of provider



30
31
32
# File 'lib/build/dependency/provider.rb', line 30

def provider
  @provider
end

#valueObject

Returns the value of attribute value

Returns:

  • (Object)

    the current value of value



30
31
32
# File 'lib/build/dependency/provider.rb', line 30

def value
  @value
end

Instance Method Details

#alias?Boolean

Returns:

  • (Boolean)


31
32
33
# File 'lib/build/dependency/provider.rb', line 31

def alias?
	false
end

#to_sObject



35
36
37
# File 'lib/build/dependency/provider.rb', line 35

def to_s
	"provides #{name.inspect}"
end