module Explorer
Constants
- CONFIGDIR
- DATADIR
- VERSION
Public Class Methods
hostmap()
click to toggle source
# File lib/explorer.rb, line 21 def self.hostmap @hostmap ||= Hostmap.new end
log_watcher()
click to toggle source
# File lib/explorer.rb, line 29 def self.log_watcher @log_watcher ||= LogWatcher.new end
process_manager()
click to toggle source
# File lib/explorer.rb, line 25 def self.process_manager @process_manager ||= ProcessManager.new end
terminate()
click to toggle source
# File lib/explorer.rb, line 33 def self.terminate @hostmap.terminate if @hostmap @log_watcher.terminate if @log_watcher @process_manager.terminate if @process_manager end
without_bundler() { || ... }
click to toggle source
# File lib/explorer.rb, line 39 def self.without_bundler if defined?(Bundler) Bundler.with_clean_env do yield end else yield end end