TheBookPeople/suppository

View on GitHub
lib/suppository/help_command.rb

Summary

Maintainability
A
0 mins
Test Coverage

require 'suppository/help'

module Suppository
  class HelpCommand
    def initialize(_)
    end

    def run
      puts Suppository.help
    end
  end
end