Class: Waluigi::RubyTaskParameter

Inherits:
Object
  • Object
show all
Defined in:
lib/waluigi/helpers.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, type, kwargs) ⇒ RubyTaskParameter

Returns a new instance of RubyTaskParameter.



90
91
92
93
94
# File 'lib/waluigi/helpers.rb', line 90

def initialize(name, type, kwargs)
	@name = name
	@type = type
	@kwargs = kwargs
end

Instance Attribute Details

#kwargsObject (readonly)

Returns the value of attribute kwargs.



88
89
90
# File 'lib/waluigi/helpers.rb', line 88

def kwargs
  @kwargs
end

#nameObject (readonly)

Returns the value of attribute name.



88
89
90
# File 'lib/waluigi/helpers.rb', line 88

def name
  @name
end

#typeObject (readonly)

Returns the value of attribute type.



88
89
90
# File 'lib/waluigi/helpers.rb', line 88

def type
  @type
end