class Shred::Commands::PlatformDeps::HomebrewDependency

Public Instance Methods

install(ctx) click to toggle source
# File lib/shred/commands/platform_deps.rb, line 33
def install(ctx)
  super(ctx, "brew install #{sym}")
end
update(ctx) click to toggle source
# File lib/shred/commands/platform_deps.rb, line 37
def update(ctx)
  super(ctx, "brew upgrade #{sym}")
end