Sha256: 46d56bcfae3bae72c54b04a2b7bce2f61cf45fbc8555a0888ae69c20f710dd62

Contents?: true

Size: 922 Bytes

Versions: 1

Compression:

Stored size: 922 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"
  STATS_MENU_CHOICES = [
      {name: 'Projects', value: :projects},
      {name: 'People', value: :people},
      {name: 'Tags', value: :tags},
      {name: 'Full stats', value: :fullstats},
      {name: 'Weekly', value: :weekly},
      {name: 'Back', value: :back}
  ]
  MENU_CHOICES = [
      {name: 'Stats', value: :stats},
      {name: 'Info', value: :info},
      {name: 'Quit', value: :quit}
  ]
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
twstats-0.2.2 lib/twstats.rb