This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
|
module OrbitApp
|
|
class BackendSideBar
|
|
attr_reader :name
|
|
|
|
def initialize(name, &block)
|
|
@name = name
|
|
block.arity < 1 ? instance_eval(&block) : block.call(self) if block_given?
|
|
end
|
|
|
|
def item(*args)
|
|
|
|
end
|
|
|
|
end
|
|
end |