Sha256: 20bf9eb6c8f6db223d696e7168a0331518492d36e12af425a07f0535eaeea6fc
Contents?: true
Size: 403 Bytes
Versions: 19
Compression:
Stored size: 403 Bytes
Contents
# frozen_string_literal: true module Mihari module 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
19 entries across 19 versions & 1 rubygems