class Shred::Commands::PlatformDeps::RubyGemDependency
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 43 def install(ctx) super(ctx, "gem 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 47 def update(ctx) super(ctx, "gem update #{sym}") end