Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Define these (can't unskip the tests yet)
- Loading branch information
Showing
with
10 additions
and
0 deletions.
-
+10
−0
lib-topaz/top_self.rb
|
@@ -5,6 +5,16 @@ def include(*mods) |
|
|
Object.include(*mods) |
|
|
end |
|
|
|
|
|
def public(*attrs) |
|
|
Object.public(*attrs) |
|
|
return Object |
|
|
end |
|
|
|
|
|
def private(*attrs) |
|
|
Object.private(*attrs) |
|
|
return Object |
|
|
end |
|
|
|
|
|
def to_s |
|
|
"main" |
|
|
end |
|
|