Sha256: 92d90a7ba9ca99046686d8e86e2685ea3062fdee62227100581cbdd7e0842b3d
Contents?: true
Size: 704 Bytes
Versions: 10
Compression:
Stored size: 704 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_relative '../shared' require_relative '../../commands/domain' module GoodData module CLI desc 'Manage your domain' arg_name 'domain_command' command :domain do |c| c.desc 'Shows users in domain' c.command :users do |users| users.action do |global_options, options, args| opts = options.merge(global_options) GoodData::Command::Domain.list_users(args[0], opts) end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems