Sha256: 5a1fb532e05ff783af6c0ee5dd757c89bf87f87d15298ed0ab2183cd6aceb480
Contents?: true
Size: 732 Bytes
Versions: 79
Compression:
Stored size: 732 Bytes
Contents
class Pry class Command::GemInstall < Pry::ClassCommand match 'gem-install' group 'Gems' description 'Install a gem and refresh the gem cache.' command_options :argument_required => true banner <<-'BANNER' Usage: gem-install GEM_NAME Installs the given gem and refreshes the gem cache so that you can immediately 'require GEM_FILE'. gem-install pry-stack_explorer BANNER def setup require 'rubygems/dependency_installer' unless defined? Gem::DependencyInstaller end def process(gem) Rubygem.install(gem) output.puts "Gem `#{ text.green(gem) }` installed." require gem end end Pry::Commands.add_command(Pry::Command::GemInstall) end
Version data entries
79 entries across 79 versions & 5 rubygems