Method: Pik::Tag#execute

Defined in:
lib/pik/commands/tag_command.rb

#executeObject



63
64
65
66
67
68
69
70
# File 'lib/pik/commands/tag_command.rb', line 63

def execute
  config.global[:tags] ||= Hash.new
  @args.each do |arg|
    tags = config.global[:tags] 
    tags[arg] ||= []
    tags[arg] << find_config_from_path 
  end
end