class RocketFuel::Fix::BrewFix

Constants

FIX_CMD

Public Instance Methods

message() click to toggle source
# File lib/rocket_fuel/fix/brew_fix.rb, line 18
def message
  'An important package manager for OS X, named homebrew, requires ' +
  'a writeable directory that is protected by the operating system ' +
  "running `#{FIX_CMD}` will get the job done."
end
run() click to toggle source
# File lib/rocket_fuel/fix/brew_fix.rb, line 10
def run
  system(FIX_CMD)
end
title() click to toggle source
# File lib/rocket_fuel/fix/brew_fix.rb, line 14
def title
  'Homebrew requires a writable /usr/local path.'
end