Sha256: 27a3123a1540b3c7fe0fa4fac2d1d2375904e68bb4e4709fadbc9ed904cc6ddd
Contents?: true
Size: 620 Bytes
Versions: 77
Compression:
Stored size: 620 Bytes
Contents
# encoding: UTF-8 # # Copyright (c) 2010-2017 GoodData Corporation. All rights reserved. # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. module GoodData module Model class DashboardBuilder def initialize(title) @title = title @tabs = [] end def add_tab(tab, &block) tb = TabBuilder.new(tab) block.call(tb) @tabs << tb tb end def to_hash { :name => @name, :tabs => @tabs.map(&:to_hash) } end end end end
Version data entries
77 entries across 77 versions & 1 rubygems