module Pixiebox

Constants

CONFIG_DIR
HOMEPAGE
PACKAGES_INFO_URL
PIXIEBOX_INI
PROJECT_INI
SHELL_EXTENSIONS
VERSION

names for files / directories

Public Instance Methods

output() click to toggle source
# File lib/pixiebox/constants.rb, line 15
def output()   @output end
root() click to toggle source
# File lib/pixiebox/constants.rb, line 13
def root() File.expand_path('../../..', __FILE__) end
set_verbosity(value) click to toggle source
# File lib/pixiebox/constants.rb, line 18
def set_verbosity(value)
  @verbose = value
  if @verbose
    @output = '2>&1'
  else
    @output = '> /dev/null 2>&1'
  end
end
verbose?() click to toggle source
# File lib/pixiebox/constants.rb, line 16
def verbose?() @verbose end