Module: Hub::Context::System

Included in:
Hub::Context, Hub::Context
Defined in:
lib/hub/context.rb

Instance Method Summary collapse

Instance Method Details

#browser_launcherObject

Cross-platform web browser command; respects the value set in $BROWSER.

Returns an array, e.g.: [‘open’]



446
447
448
449
450
451
452
453
454
# File 'lib/hub/context.rb', line 446

def browser_launcher
  browser = ENV['BROWSER'] || (
    osx? ? 'open' : windows? ? %w[cmd /c start] :
    %w[xdg-open cygstart x-www-browser firefox opera mozilla netscape].find { |comm| which comm }
  )

  abort "Please set $BROWSER to a web launcher to use this command." unless browser
  Array(browser)
end

#command?(name) ⇒ Boolean

Checks whether a command exists on this system in the $PATH.

name - The String name of the command to check for.

Returns a Boolean.

Returns:

  • (Boolean)


485
486
487
# File 'lib/hub/context.rb', line 485

def command?(name)
  !which(name).nil?
end

#osx?Boolean

Returns:

  • (Boolean)


456
457
458
459
# File 'lib/hub/context.rb', line 456

def osx?
  require 'rbconfig'
  RbConfig::CONFIG['host_os'].to_s.include?('darwin')
end

#tmp_dirObject



489
490
491
# File 'lib/hub/context.rb', line 489

def tmp_dir
  ENV['TMPDIR'] || ENV['TEMP'] || '/tmp'
end

#which(cmd) ⇒ Object

Cross-platform way of finding an executable in the $PATH.

which('ruby') #=> /usr/bin/ruby


469
470
471
472
473
474
475
476
477
478
# File 'lib/hub/context.rb', line 469

def which(cmd)
  exts = ENV['PATHEXT'] ? ENV['PATHEXT'].split(';') : ['']
  ENV['PATH'].split(File::PATH_SEPARATOR).each do |path|
    exts.each { |ext|
      exe = "#{path}/#{cmd}#{ext}"
      return exe if File.executable? exe
    }
  end
  return nil
end

#windows?Boolean

Returns:

  • (Boolean)


461
462
463
464
# File 'lib/hub/context.rb', line 461

def windows?
  require 'rbconfig'
  RbConfig::CONFIG['host_os'] =~ /msdos|mswin|djgpp|mingw|windows/
end