Sha256: 0852ea72a45a4de8acabb2fad2e17e552b852276c4d07a70830d89ced832c48c
Contents?: true
Size: 1.03 KB
Versions: 54
Compression:
Stored size: 1.03 KB
Contents
# frozen_string_literal: true require "thor" require_relative "audit" require_relative "commits" module Neetob class CLI module Users class Commands < Thor desc "audit", "Audit the users of all the neeto apps" def audit Audit.new(options[:sandbox]).run end desc "commits", "List the commits of a user across the neeto apps" option :apps, type: :array, aliases: "-a", default: ["*"], desc: "Github app names. Can be matched using the '*' wildcard. Example: \"neeto*\" \"neeto-cal-web\", also providing \"all\" as value matches all neeto apps." option :author, type: :string, required: true, desc: "Github username of the person whose commits you want to list" option :duration, type: :string, required: true, desc: "Duration for which you want to list the commits. Example: \"6.months\" \"10.days\"" def commits Commits.new( options[:author], options[:duration], options[:apps], options[:sandbox]).run end end end end end
Version data entries
54 entries across 54 versions & 1 rubygems