Sha256: ccc7269774c5b570b90eb0f4fa82d92d27e964384a9c67494d2cb10200a56153
Contents?: true
Size: 542 Bytes
Versions: 1
Compression:
Stored size: 542 Bytes
Contents
module Grundler module Commands class Help def initialize(_cli, _arguments, _json_writer) puts Help.help_text end 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 end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
grundler-0.1.0 | lib/grundler/commands/help.rb |