Sha256: 5cced0a664dfc606e72aef844ccfcebd6a295a033ac706b0a11ba795ff4ae284
Contents?: true
Size: 715 Bytes
Versions: 25
Compression:
Stored size: 715 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. require 'pathname' require 'pp' require_relative '../shared' require_relative '../../commands/project' module GoodData module CLI desc 'Manage your project' arg_name 'project_command' command :project do |c| c.desc 'Shows users in project' c.command :users do |users| users.action do |global_options, options, _args| opts = options.merge(global_options) GoodData::Command::Project.list_users(opts) end end end end end
Version data entries
25 entries across 25 versions & 1 rubygems