Flowdock
new(pwd = Dir.pwd, umask = nil) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/shell.rb, line 90
  def initialize(pwd = Dir.pwd, umask = nil)
    @cwd = File.expand_path(pwd)
    @dir_stack = []
    @umask = umask

    @system_path = Shell.default_system_path
    @record_separator = Shell.default_record_separator

    @command_processor = CommandProcessor.new(self)
    @process_controller = ProcessController.new(self)

    @verbose = Shell.verbose
    @debug = Shell.debug
  end
Register or log in to add new notes.