technekes/nib

View on GitHub
lib/nib/unrecognized_help.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class Nib::UnrecognizedHelp
  def self.execute(_, _)
    puts <<-MESSAGE.strip_heredoc

      Note:
        Unrecognized commands will be delegated to docker-compose.
        For example the following are equivalent:
          nib start
          docker-compose start
    MESSAGE
  end
end