WIP: feature/1-add-support-for-fs-crud #47
1 changed files with 4 additions and 4 deletions
|
@ -4,12 +4,12 @@ module GX::Utils
|
|||
@ancestors = base
|
||||
end
|
||||
|
||||
def +(elem : String)
|
||||
b = BreadCrumbs.new(@ancestors + [elem])
|
||||
def +(other : String)
|
||||
BreadCrumbs.new(@ancestors + [other])
|
||||
end
|
||||
|
||||
def to_s
|
||||
@ancestors.join(" ")
|
||||
def to_s(io : IO)
|
||||
io << @ancestors.join(" ")
|
||||
end
|
||||
|
||||
def to_a
|
||||
|
|
Loading…
Reference in a new issue