class AocCli::Commands::Refresh

Public Class Methods

new(args) click to toggle source
# File lib/aoc_cli/commands.rb, line 137
def initialize(args)
end

Public Instance Methods

exec() click to toggle source
# File lib/aoc_cli/commands.rb, line 139
def exec
        case Metafile.type
        when :DAY  then Day.refresh
        when :ROOT then Year.refresh end
        self
end