Sha256: 1f0fa71e3977ab78e8c32ac04562232d93bc58b2139a86867cdab2811e8f75ab

Contents?: true

Size: 450 Bytes

Versions: 9

Compression:

Stored size: 450 Bytes

Contents

# encoding: UTF-8

require_relative '../shared'
require_relative '../../commands/auth'

GoodData::CLI.module_eval do
  desc 'Work with your locally stored credentials'
  command :auth do |c|
    c.desc 'Store your credentials to ~/.gooddata so client does not have to ask you every single time'
    c.command :store do |store|
      store.action do |_global_options, _options, _args|
        GoodData::Command::Auth.store
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
gooddata-0.6.20 lib/gooddata/cli/commands/auth_cmd.rb
gooddata-0.6.19 lib/gooddata/cli/commands/auth_cmd.rb
gooddata-0.6.18 lib/gooddata/cli/commands/auth_cmd.rb
gooddata-0.6.17 lib/gooddata/cli/commands/auth_cmd.rb
gooddata-0.6.16 lib/gooddata/cli/commands/auth_cmd.rb
gooddata-0.6.15 lib/gooddata/cli/commands/auth_cmd.rb
gooddata-0.6.14 lib/gooddata/cli/commands/auth_cmd.rb
gooddata-0.6.13 lib/gooddata/cli/commands/auth_cmd.rb
gooddata-0.6.12 lib/gooddata/cli/commands/auth_cmd.rb