module Help

Constants

CONTENT
OPTIONS

Public Class Methods

display() click to toggle source
# File lib/cless/help.rb, line 91
def self.display
  io = open("|#{$0} #{OPTIONS}", "w")
  io.write(CONTENT)
  io.close
  Process.wait rescue nil
end