class Grundler::Commands::Help

Public Class Methods

help_text() click to toggle source
# File lib/grundler/commands/help.rb, line 8
      def self.help_text
        <<~HELP_TEXT

          Usage: grundle <command>

          grundle add      add package to project
          grundle install  install all packages in lockfile
          grundle update   update all packages in lockfile
          grundle remove   remove a package from project
          grundle help     display this help

        HELP_TEXT
      end
new(_cli, _arguments, _json_writer) click to toggle source
# File lib/grundler/commands/help.rb, line 4
def initialize(_cli, _arguments, _json_writer)
  puts Help.help_text
end