class Shred::Commands::PlatformDeps::NpmDependency
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 53 def install(ctx) super(ctx, "npm 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 57 def update(ctx) super(ctx, "npm update #{sym}") end