rootstrap/rsgem

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

Summary

Maintainability
A
0 mins
Test Coverage
B
85%
# frozen_string_literal: true

module RSGem
  module CLI
    module Commands
      class Version < Dry::CLI::Command
        desc 'Print version'

        def call(*)
          puts RSGem::VERSION
        end
      end
    end
  end
end