jnbt/candy_check

View on GitHub
lib/candy_check/cli/commands/version.rb

Summary

Maintainability
A
0 mins
Test Coverage
module CandyCheck
  module CLI
    module Commands
      # Command to show the gem's version
      class Version < Base
        # Prints the current gem's version to the command line
        def run
          out.print CandyCheck::VERSION
        end
      end
    end
  end
end