Sha256: be399dcfb466641534b3442093451d4eeba921d6550c3950c2bb4db6fb1670a9

Contents?: true

Size: 640 Bytes

Versions: 11

Compression:

Stored size: 640 Bytes

Contents

module Kaya
  module Commands
    def self.help
      $K_LOG.debug "#{self}:#{__method__}" if $K_LOG
      puts "

      Kaya has some commands:

        - install
        - start
        - stop
        - restart
        - reset

      Note: If you stop kaya and then you want to get it up and the port you are using is already in use
            you could use the following commands (Ubunutu OS):

                $sudo netstat -tapen | grep :8080

            In this example we use the port 8080. This command will give you the app that is using the port.
            Then you could kill it getting its PID previously."
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
kaya-0.0.14 lib/kaya/commands/help.rb
kaya-0.0.13 lib/kaya/commands/help.rb
kaya-0.0.12 lib/kaya/commands/help.rb
kaya-0.0.11 lib/kaya/commands/help.rb
kaya-0.0.10 lib/kaya/commands/help.rb
kaya-0.0.9 lib/kaya/commands/help.rb
kaya-0.0.8 lib/kaya/commands/help.rb
kaya-0.0.7 lib/kaya/commands/help.rb
kaya-0.0.6 lib/kaya/commands/help.rb
kaya-0.0.5 lib/kaya/commands/help.rb
kaya-0.0.4 lib/kaya/commands/help.rb