TheBookPeople/suppository

View on GitHub
lib/suppository/version_command.rb

Summary

Maintainability
A
0 mins
Test Coverage


module Suppository
  class VersionCommand
    def initialize(_)
    end

    def run
      puts "Suppository Version #{Suppository::VERSION}"
    end
  end
end