Sha256: b593d5824ab64de27f41bf5140adca3f00d1eb9212d6466c808201131a0f1417

Contents?: true

Size: 470 Bytes

Versions: 1

Compression:

Stored size: 470 Bytes

Contents

# encoding: UTF-8

require 'pp'

require_relative '../shared'
require_relative '../../commands/profile'

GoodData::CLI.module_eval do

  desc 'Describe add here'
  arg_name 'show'
  command :profile do |c|

    c.desc 'Show your profile'
    c.command :show do |show|
      show.action do |global_options, options, args|
        opts = options.merge(global_options)
        GoodData.connect(opts)
        pp GoodData::Command::Profile.show()
      end
    end
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gooddata-0.6.0 lib/gooddata/cli/commands/profile_cmd.rb