Sha256: 2bc341b1fabb773ce9e843fff058a41012bb2a23d83c008d6bd4fd1f82366701
Contents?: true
Size: 530 Bytes
Versions: 9
Compression:
Stored size: 530 Bytes
Contents
# encoding: UTF-8 require_relative '../shared' require_relative '../../commands/project' require_relative '../../commands/role' require_relative '../../commands/user' GoodData::CLI.module_eval do desc 'User management' command :user do |c| c.desc 'Show your profile' c.command :show do |show| show.action do |global_options, options, _args| opts = options.merge(global_options) client = GoodData.connect(opts) pp GoodData::Command::User.show(client: client) end end end end
Version data entries
9 entries across 9 versions & 1 rubygems