Sha256: 6441acd3f6b57222836af80002379f15d08b13c74182ca9631c87da9584d91e7
Contents?: true
Size: 476 Bytes
Versions: 29
Compression:
Stored size: 476 Bytes
Contents
# encoding: UTF-8 # # Copyright (c) 2010-2015 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. require_relative 'data_getter' module GoodData module Mixin module DataPropertyReader def data_property_reader(*props) props.each do |prop| define_method prop, proc { data[prop.to_s] } end end end end end
Version data entries
29 entries across 29 versions & 2 rubygems