Module: Explorer

Defined in:
lib/explorer.rb,
lib/explorer/cli.rb,
lib/explorer/proxy.rb,
lib/explorer/setup.rb,
lib/explorer/process.rb,
lib/explorer/servers.rb,
lib/explorer/version.rb,
lib/explorer/cli/proxy.rb,
lib/explorer/cli/setup.rb,
lib/explorer/ipc_client.rb,
lib/explorer/server/dns.rb,
lib/explorer/server/ipc.rb,
lib/explorer/cli/process.rb,
lib/explorer/log_watcher.rb,
lib/explorer/server/http.rb,
lib/explorer/server/https.rb,
lib/explorer/request_stream.rb,
lib/explorer/process_manager.rb

Defined Under Namespace

Modules: CLI, Server Classes: IPCClient, LogWatcher, Process, ProcessManager, Proxy, RequestStream, Servers, Setup

Constant Summary collapse

DATADIR =
File.expand_path(File.join(File.dirname(__FILE__), '..', 'data'))
VERSION =
"0.0.3"

Class Method Summary collapse

Class Method Details

.without_bundlerObject



19
20
21
22
23
24
25
26
27
# File 'lib/explorer.rb', line 19

def self.without_bundler
  if defined?(Bundler)
    Bundler.with_clean_env do
      yield
    end
  else
    yield
  end
end