module Tr3llo::View::Help

Public Instance Methods

miscellaneous_help() click to toggle source
# File lib/3llo/view/help.rb, line 23
      def miscellaneous_help()
        <<~TEMPLATE.strip
        #{Utils.format_bold("# Miscellaneous commands:")}

        help  - Display this help message
        exit  - Exit the program
        TEMPLATE
      end
render() click to toggle source
# File lib/3llo/view/help.rb, line 6
      def render()
        <<~TEMPLATE.strip
        #{Utils.format_bold(Utils.paint("3llo v#{Tr3llo::VERSION} - Interactive CLI application for Trello", "blue"))}


        #{View::Board::Help.render()}

        #{View::Card::Help.render()}

        #{View::List::Help.render()}

        #{View::Label::Help.render()}

        #{miscellaneous_help()}
        TEMPLATE
      end