Sha256: b0f958bd4ed2d3bd576b68887605f7f1e17efd551b638b37c44278b4dd45c2e9
Contents?: true
Size: 840 Bytes
Versions: 2
Compression:
Stored size: 840 Bytes
Contents
require_relative 'twstats/version' require_relative 'twstats/csv_reader' require_relative 'twstats/runner' require_relative 'twstats/tw_log' module Twstats DEFAULT_OPTIONS = {encoding: 'ISO-8859-1:UTF-8', headers: true} WELLCOME_MESSAGE = "\n*************************************************************************************** ** TWStats helps you to get some stats from a CSV export of Time loggin gin Teamwork ** ***************************************************************************************\n\n" STATS_MENU_CHOICES = [ {name: 'Projects', value: 0}, {name: 'People', value: 1}, {name: 'Tags', value: 2}, {name: 'Full stats', value: 3}, {name: 'Back', value: 4} ] MENU_CHOICES = [ {name: 'Stats', value: 0}, {name: 'Info', value: 1}, {name: 'Quit', value: 2} ] end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
twstats-0.2.1 | lib/twstats.rb |
twstats-0.2 | lib/twstats.rb |