Sha256: 9ae05970d6ab326f58ceed1a76526ad794853ef46a17d91e75fcf0078f70840f

Contents?: true

Size: 1.47 KB

Versions: 1

Compression:

Stored size: 1.47 KB

Contents

# frozen_string_literal: true

require_relative '../git_stats'
require 'thor'

module GitStats
  class CLI < Thor
    class << self
      def exit_on_failure?
        true
      end
    end

    option :path, aliases: '-p', default: '.', desc: 'Path to git repository from which statistics should be generated.'
    option :out_path, aliases: '-o', default: './git_stats', desc: 'Output path where statistics should be written.'
    option :language, aliases: '-l', default: 'en', desc: 'Language of written statistics.'
    option :first_commit_sha, aliases: '-f', desc: 'Commit from where statistics should start.'
    option :last_commit_sha, aliases: '-t', default: 'HEAD', desc: 'Commit where statistics should stop.'
    option :silent, aliases: '-s', type: :boolean, desc: 'Silent mode. Don\'t output anything.'
    option :tree, aliases: '-d', default: '.', desc: 'Tree where statistics should be generated.'
    option :comment_string, aliases: '-c', default: '//', desc: 'The string which is used for comments.'

    desc 'generate', 'Generates the statistics of a git repository'
    def generate
      I18n.locale = options[:language]
      GitStats::Generator.new(options) do |g|
        g.add_command_observer { |command, _result| puts command.to_s } unless options[:silent]
      end.render_all
    end

    desc 'version', 'Show NovaGitStats version number and quit'
    def version
      puts "NovaGitStats #{GitStats::VERSION}"
    end
    map %w(-v --version) => :version
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
nova_git_stats-2.3.0 lib/git_stats/cli.rb