mirror of
https://github.com/github/semantic.git
synced 2024-12-22 14:21:31 +03:00
14 lines
144 B
Ruby
14 lines
144 B
Ruby
def require_dependency(path)
|
|
require_relative(path)
|
|
end
|
|
|
|
class Object
|
|
def new
|
|
self
|
|
end
|
|
|
|
def inspect
|
|
return "<object>"
|
|
end
|
|
end
|