Class: Rgviz::Options
- Inherits:
-
Object
- Object
- Rgviz::Options
- Defined in:
- lib/rgviz/nodes.rb
Instance Attribute Summary collapse
-
#no_format ⇒ Object
Returns the value of attribute no_format.
-
#no_values ⇒ Object
Returns the value of attribute no_values.
Instance Method Summary collapse
Instance Attribute Details
#no_format ⇒ Object
Returns the value of attribute no_format.
200 201 202 |
# File 'lib/rgviz/nodes.rb', line 200 def no_format @no_format end |
#no_values ⇒ Object
Returns the value of attribute no_values.
199 200 201 |
# File 'lib/rgviz/nodes.rb', line 199 def no_values @no_values end |
Instance Method Details
#to_s ⇒ Object
202 203 204 205 206 207 |
# File 'lib/rgviz/nodes.rb', line 202 def to_s s = '' s += 'no_values ' if @no_values s += 'no_format ' if @no_format s.strip end |