Method: Codger::CLI#history

Defined in:
lib/codger/cli.rb

#historyObject



58
59
60
61
62
63
64
# File 'lib/codger/cli.rb', line 58

def history
  Manager.default.settings[:runs].each do |info|
    puts "#{info[:generator]} [#{info[:tags].join(' ')}]"
    puts Generator.format_params(info[:params])
    puts
  end
end