Module: Threeman

Defined in:
lib/threeman.rb,
lib/threeman/cli.rb,
lib/threeman/command.rb,
lib/threeman/version.rb,
lib/threeman/frontend.rb,
lib/threeman/procfile.rb,
lib/threeman/frontends/tmux.rb,
lib/threeman/frontends/iterm3.rb,
lib/threeman/frontends/mac_terminal.rb

Defined Under Namespace

Modules: Frontends Classes: CLI, Command, Frontend, Procfile

Constant Summary collapse

FRONTENDS =
{
  :iterm3 => lambda { |options|
    require 'threeman/frontends/iterm3'
    Threeman::Frontends::Iterm3.new(options)
  },
  :mac_terminal => lambda { |options|
    require 'threeman/frontends/mac_terminal'
    Threeman::Frontends::MacTerminal.new(options)
  },
  :tmux => lambda { |options|
    require 'threeman/frontends/tmux'
    Threeman::Frontends::Tmux.new(options)
  }
}
VERSION =
"0.9.3"