mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Initial code for example names
This commit is contained in:
parent
5e4f0f3bbc
commit
1c7c6e5e90
2 changed files with 14 additions and 0 deletions
|
@ -10,5 +10,11 @@ module Spectator
|
|||
end
|
||||
|
||||
private getter locals
|
||||
|
||||
def to_s(io)
|
||||
@group.to_s(io)
|
||||
io << ' '
|
||||
io << description
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -85,5 +85,13 @@ module Spectator
|
|||
end
|
||||
wrapper
|
||||
end
|
||||
|
||||
def to_s(io)
|
||||
if (parent = @parent)
|
||||
parent.to_s(io)
|
||||
io << ' '
|
||||
end
|
||||
io << what
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue