mirror of
https://github.com/github/semantic.git
synced 2025-01-09 00:56:32 +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
|