Sha256: 84fb6a71906509c7476a0265d9c3280428c370d5f424c3efcb276859dd91990d
Contents?: true
Size: 503 Bytes
Versions: 1
Compression:
Stored size: 503 Bytes
Contents
require 'pp' require File.join(File.dirname(__FILE__), "../shared") require File.join(File.dirname(__FILE__), "../../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.pre11 | lib/gooddata/cli/commands/profile_cmd.rb |