Class: Kube::Ctl::MethodCallToken
- Inherits:
-
Object
- Object
- Kube::Ctl::MethodCallToken
- Defined in:
- lib/kube/ctl/string_builder.rb
Instance Attribute Summary collapse
-
#args ⇒ Object
readonly
Returns the value of attribute args.
-
#base ⇒ Object
readonly
Returns the value of attribute base.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(base, name, args) ⇒ MethodCallToken
constructor
A new instance of MethodCallToken.
Constructor Details
#initialize(base, name, args) ⇒ MethodCallToken
Returns a new instance of MethodCallToken.
10 11 12 13 14 |
# File 'lib/kube/ctl/string_builder.rb', line 10 def initialize(base, name, args) @base = base @name = name @args = args end |
Instance Attribute Details
#args ⇒ Object (readonly)
Returns the value of attribute args.
8 9 10 |
# File 'lib/kube/ctl/string_builder.rb', line 8 def args @args end |
#base ⇒ Object (readonly)
Returns the value of attribute base.
6 7 8 |
# File 'lib/kube/ctl/string_builder.rb', line 6 def base @base end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
7 8 9 |
# File 'lib/kube/ctl/string_builder.rb', line 7 def name @name end |