Sha256: cce9e14471624f22dae567e0a24361f52fc2d703b5231033b46a7279163d8ae5
Contents?: true
Size: 442 Bytes
Versions: 48
Compression:
Stored size: 442 Bytes
Contents
module Redcar class ToolBar class LazyToolBar < ToolBar def initialize(block, text=nil, options={}) @text = text @block = block @priority = options[:priority] || ToolBar::DEFAULT_PRIORITY end def entries ToolBar::Builder.build(&@block).entries end def <<(*_) raise end def merge(*_) raise end end end end
Version data entries
48 entries across 48 versions & 2 rubygems