Sha256: 6f4b1653d62eb8b8808d28aa7404bb8a757b1732f338362f1baf89b7471a1ae1

Contents?: true

Size: 270 Bytes

Versions: 4

Compression:

Stored size: 270 Bytes

Contents

require_relative 'command'
module Sym
  module App
    module Commands
      class ShowVersion < Command
        required_options :version
        try_after :show_help
        def execute
          "sym (version #{Sym::VERSION})"
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
sym-2.0.3 lib/sym/app/commands/show_version.rb
sym-2.0.2 lib/sym/app/commands/show_version.rb
sym-2.0.1 lib/sym/app/commands/show_version.rb
sym-2.0.0 lib/sym/app/commands/show_version.rb