Class: Grumlin::Path
- Inherits:
-
Object
- Object
- Grumlin::Path
- Defined in:
- lib/grumlin/path.rb
Instance Attribute Summary collapse
-
#objects ⇒ Object
readonly
Returns the value of attribute objects.
Instance Method Summary collapse
-
#initialize(path) ⇒ Path
constructor
A new instance of Path.
- #inspect ⇒ Object
- #to_s ⇒ Object
Constructor Details
Instance Attribute Details
#objects ⇒ Object (readonly)
Returns the value of attribute objects.
4 5 6 |
# File 'lib/grumlin/path.rb', line 4 def objects @objects end |
Instance Method Details
#inspect ⇒ Object
11 12 13 |
# File 'lib/grumlin/path.rb', line 11 def inspect "p[#{@objects}]" end |
#to_s ⇒ Object
15 16 17 |
# File 'lib/grumlin/path.rb', line 15 def to_s inspect end |