Project

General

Profile

Download (228 Bytes) Statistics
| Branch: | Tag: | Revision:
module Menu
class Divider < Node
def initialize(name, options = {})
@caption = options[:caption]
@parent = options.fetch(:parent, nil)
super name
end

def authorized?
true
end
end
end
(1-1/6)