Class: Abt::Providers::Asana::Commands::Current

Inherits:
BaseCommand show all
Defined in:
lib/abt/providers/asana/commands/current.rb

Instance Attribute Summary

Attributes inherited from BaseCommand

#config, #path

Attributes inherited from BaseCommand

#ari, #cli, #flags

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseCommand

#initialize

Methods inherited from BaseCommand

flags, #initialize

Constructor Details

This class inherits a constructor from Abt::Providers::Asana::BaseCommand

Class Method Details

.descriptionObject



12
13
14
# File 'lib/abt/providers/asana/commands/current.rb', line 12

def self.description
  "Get or set project and or task for current git repository"
end

.usageObject



8
9
10
# File 'lib/abt/providers/asana/commands/current.rb', line 8

def self.usage
  "abt current asana[:<project-gid>[/<task-gid>]]"
end

Instance Method Details

#performObject



16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/abt/providers/asana/commands/current.rb', line 16

def perform
  require_local_config!
  require_project!
  ensure_valid_configuration!

  if path != config.path
    config.path = path
    warn("Configuration updated")
  end

  print_configuration
end