Class: Build::Dependency::Depends

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, **options) ⇒ Depends

Returns a new instance of Depends.



65
66
67
68
69
# File 'lib/build/dependency/provider.rb', line 65

def initialize(name, **options)
	super(name)
	
	@options = options
end

Instance Attribute Details

#nameObject

Returns the value of attribute name

Returns:

  • (Object)

    the current value of name



64
65
66
# File 'lib/build/dependency/provider.rb', line 64

def name
  @name
end

#optionsObject (readonly)

Returns the value of attribute options.



83
84
85
# File 'lib/build/dependency/provider.rb', line 83

def options
  @options
end

Class Method Details

.[](name_or_dependency) ⇒ Object



104
105
106
# File 'lib/build/dependency/provider.rb', line 104

def [](name_or_dependency)
	name_or_dependency.is_a?(self) ? name_or_dependency : self.new(name_or_dependency)
end

Instance Method Details

#alias?Boolean

Returns:

  • (Boolean)


97
98
99
# File 'lib/build/dependency/provider.rb', line 97

def alias?
	name.is_a?(Symbol)
end

#match?(name) ⇒ Boolean

Returns:

  • (Boolean)


75
76
77
78
79
80
81
# File 'lib/build/dependency/provider.rb', line 75

def match?(name)
	if wildcard? and name.is_a?(String)
		File.fnmatch?(self.name, name)
	else
		self.name == name
	end
end

#private?Boolean

Returns:

  • (Boolean)


93
94
95
# File 'lib/build/dependency/provider.rb', line 93

def private?
	@options[:private]
end

#to_sObject



85
86
87
88
89
90
91
# File 'lib/build/dependency/provider.rb', line 85

def to_s
	if @options.any?
		"depends on #{name.inspect} #{@options.inspect}"
	else
		"depends on #{name.inspect}"
	end
end

#wildcard?Boolean

Returns:

  • (Boolean)


71
72
73
# File 'lib/build/dependency/provider.rb', line 71

def wildcard?
	self.name.is_a?(String) and self.name.include?('*')
end