Sha256: e4d04c6d1d43ee17f48523997948850e2121e683cb10de432a8b554d9e4cef73

Contents?: true

Size: 643 Bytes

Versions: 29

Compression:

Stored size: 643 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.

# Global requires
require 'multi_json'

# Local requires
require 'gooddata/models/models'

module GoodData::Helpers
  module BlueprintHelper
    def blueprint_from_file(bp)
      # Try to load as full path
      raw = IO.read(bp)

      # TODO: Try to load as relative path if failed

      parsed = MultiJson.load(raw, :symbolize_keys => true)
      return GoodData::Model::ProjectBlueprint.new(parsed)
    end
  end
end

Version data entries

29 entries across 29 versions & 2 rubygems

Version Path
gooddata-edge-0.6.27.edge spec/helpers/blueprint_helper.rb
gooddata-0.6.49 spec/helpers/blueprint_helper.rb
gooddata-0.6.48 spec/helpers/blueprint_helper.rb
gooddata-0.6.47 spec/helpers/blueprint_helper.rb
gooddata-0.6.46 spec/helpers/blueprint_helper.rb
gooddata-0.6.45 spec/helpers/blueprint_helper.rb
gooddata-0.6.44 spec/helpers/blueprint_helper.rb
gooddata-0.6.43 spec/helpers/blueprint_helper.rb
gooddata-0.6.42 spec/helpers/blueprint_helper.rb
gooddata-0.6.41 spec/helpers/blueprint_helper.rb
gooddata-0.6.40 spec/helpers/blueprint_helper.rb
gooddata-0.6.39 spec/helpers/blueprint_helper.rb
gooddata-0.6.38 spec/helpers/blueprint_helper.rb
gooddata-0.6.37 spec/helpers/blueprint_helper.rb
gooddata-0.6.36 spec/helpers/blueprint_helper.rb
gooddata-0.6.35 spec/helpers/blueprint_helper.rb
gooddata-0.6.34 spec/helpers/blueprint_helper.rb
gooddata-0.6.33 spec/helpers/blueprint_helper.rb
gooddata-0.6.32 spec/helpers/blueprint_helper.rb
gooddata-0.6.31 spec/helpers/blueprint_helper.rb