Sha256: 9c34b865273e3a7dcfdb8fbcaa33d5d6db2f0202da2dfe5f261aaa698ce84668
Contents?: true
Size: 429 Bytes
Versions: 19
Compression:
Stored size: 429 Bytes
Contents
# encoding: UTF-8 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
19 entries across 19 versions & 1 rubygems