Sha256: b5a7b092f8dbe19278484a80ac3274e8ad6fcfab112d1f54f27ebb3ae6912f25
Contents?: true
Size: 722 Bytes
Versions: 75
Compression:
Stored size: 722 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 class NoProjectError < RuntimeError DEFAULT_MSG = 'You have to provide "project_id". You can either provide ' \ 'it through -p flag or even better way is to fill it in in ' \ 'your Goodfile under key "project_id". If you just started ' \ 'a project you have to create it first. One way might be ' \ 'through "gooddata project build"' def initialize(msg = DEFAULT_MSG) super(msg) end end end
Version data entries
75 entries across 75 versions & 1 rubygems