lib/sym/app/commands/show_version.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'sym/app/commands/base_command'
module Sym
  module App
    module Commands
      class ShowVersion < BaseCommand
        required_options :version
        try_after :show_help
        def execute
          "sym (version #{Sym::VERSION})"
        end
      end
    end
  end
end