Sha256: e32819ccee19a3b0ebbc348809fa3cc2476688b1523b3dadb4e538f57f353fbc
Contents?: true
Size: 1.5 KB
Versions: 29
Compression:
Stored size: 1.5 KB
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. module GoodData module Mixin module MdRelations def dependency(uri, key = nil, opts = { :client => client, :project => project }) GoodData::MdObject.dependency(uri, key, opts) end # Checks for dependency def dependency?(type, obj, opts = { :client => client, :project => project }) GoodData::MdObject.dependency?(type, self, obj, opts) end # Returns which objects uses this MD resource def usedby(key = nil, opts = { :client => client, :project => project }) dependency("#{project.md['usedby2']}/#{obj_id}", key, { :client => client, :project => project }.merge(opts)) end alias_method :used_by, :usedby # Returns which objects this MD resource uses def using(key = nil, opts = { :client => client, :project => project }) dependency("#{project.md['using2']}/#{obj_id}", key, { :client => client, :project => project }.merge(opts)) end def usedby?(obj, opts = { :client => client, :project => project }) GoodData::MdObject.used_by?(self, obj, opts) end alias_method :used_by?, :usedby? # Checks if obj is using this MD resource def using?(obj, opts = { :client => client, :project => project }) dependency?(:using, obj, opts) end end end end
Version data entries
29 entries across 29 versions & 2 rubygems