class Shred::Commands::PlatformDeps::RubyGemDependency

Public Instance Methods

install(ctx) click to toggle source
# File lib/shred/commands/platform_deps.rb, line 43
def install(ctx)
  super(ctx, "gem install #{sym}")
end
update(ctx) click to toggle source
# File lib/shred/commands/platform_deps.rb, line 47
def update(ctx)
  super(ctx, "gem update #{sym}")
end