andrcuns/allure-report-publisher

View on GitHub
lib/allure_report_publisher/commands/version.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module Publisher
  module Commands
    # Print version number
    #
    class Version < Dry::CLI::Command
      desc "Print version"

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