class Vpsb::Commands::HelpMessages

Public Class Methods

intro() click to toggle source
# File lib/vpsb/commands/help_messages.rb, line 4
def self.intro
  "Vpsb ver: #{VERSION}"
end
show() click to toggle source
# File lib/vpsb/commands/help_messages.rb, line 12
      def self.show
        %{
Need help :D

commands:
  init <name> #name is optional when is present all files will be created in in folder that name

        }
      end
unknown_command() click to toggle source
# File lib/vpsb/commands/help_messages.rb, line 8
def self.unknown_command
  "Command unknown"
end