Sha256: 985f7b5fa1f2c5499f8dbb238718e2c204e71dc46d096c63461b1c33dc0da265

Contents?: true

Size: 422 Bytes

Versions: 13

Compression:

Stored size: 422 Bytes

Contents

# frozen_string_literal: true

require "thor"
require_relative "perform"

module Neetob
  class CLI
    module MonthlyAudit
      class Commands < Thor
        desc "perform", "Perform the audit"
        option :month, type: :string, aliases: "-m", required: true, desc: "Month. Example: June-2024"

        def perform
          Perform.new(options[:month], options[:sandbox]).run
        end
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
neetob-0.5.29 lib/neetob/cli/monthly_audit/commands.rb
neetob-0.5.28 lib/neetob/cli/monthly_audit/commands.rb
neetob-0.5.27 lib/neetob/cli/monthly_audit/commands.rb
neetob-0.5.26 lib/neetob/cli/monthly_audit/commands.rb
neetob-0.5.25 lib/neetob/cli/monthly_audit/commands.rb
neetob-0.5.24 lib/neetob/cli/monthly_audit/commands.rb
neetob-0.5.23 lib/neetob/cli/monthly_audit/commands.rb
neetob-0.5.22 lib/neetob/cli/monthly_audit/commands.rb
neetob-0.5.21 lib/neetob/cli/monthly_audit/commands.rb
neetob-0.5.20 lib/neetob/cli/monthly_audit/commands.rb
neetob-0.5.19 lib/neetob/cli/monthly_audit/commands.rb
neetob-0.5.18 lib/neetob/cli/monthly_audit/commands.rb
neetob-0.5.17 lib/neetob/cli/monthly_audit/commands.rb