Sha256: 340d8107752be1f6236748f286824c76e85b36a5c3c4f9b8a37686fa2a8e92c6
Contents?: true
Size: 442 Bytes
Versions: 29
Compression:
Stored size: 442 Bytes
Contents
# frozen_string_literal: true module Mihari module Commands # # Version sub-commands # module Version class << self def included(thor) thor.class_eval do map %w[--version -v] => :__print_version desc "--version, -v", "Print the version" def __print_version puts Mihari::VERSION end end end end end end end
Version data entries
29 entries across 29 versions & 1 rubygems