class Shred::Commands::PlatformDeps::HomebrewDependency
Public Instance Methods
install(ctx)
click to toggle source
Calls superclass method
Shred::Commands::PlatformDeps::Dependency#install
# File lib/shred/commands/platform_deps.rb, line 33 def install(ctx) super(ctx, "brew install #{sym}") end
update(ctx)
click to toggle source
Calls superclass method
Shred::Commands::PlatformDeps::Dependency#update
# File lib/shred/commands/platform_deps.rb, line 37 def update(ctx) super(ctx, "brew upgrade #{sym}") end