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

Version Path
pry-1.0.0.pre1-i386-mingw32 lib/pry/commands/gem_install.rb
torquebox-console-0.2.4 vendor/bundle/jruby/1.9/gems/pry-0.9.12-java/lib/pry/commands/gem_install.rb
torquebox-console-0.2.3 vendor/bundle/jruby/1.9/gems/pry-0.9.12-java/lib/pry/commands/gem_install.rb
pry-0.9.12 lib/pry/commands/gem_install.rb
pry-0.9.12-i386-mswin32 lib/pry/commands/gem_install.rb
pry-0.9.12-i386-mingw32 lib/pry/commands/gem_install.rb
pry-0.9.12-java lib/pry/commands/gem_install.rb
pry-0.9.12pre3 lib/pry/commands/gem_install.rb
pry-0.9.12pre3-i386-mswin32 lib/pry/commands/gem_install.rb
pry-0.9.12pre3-i386-mingw32 lib/pry/commands/gem_install.rb
pry-0.9.12pre3-java lib/pry/commands/gem_install.rb
pry-0.9.12pre2 lib/pry/commands/gem_install.rb
pry-0.9.12pre2-i386-mswin32 lib/pry/commands/gem_install.rb
pry-0.9.12pre2-i386-mingw32 lib/pry/commands/gem_install.rb
pry-0.9.12pre2-java lib/pry/commands/gem_install.rb
pry-0.9.12pre1 lib/pry/commands/gem_install.rb
pry-0.9.12pre1-i386-mswin32 lib/pry/commands/gem_install.rb
pry-0.9.12pre1-i386-mingw32 lib/pry/commands/gem_install.rb
pry-0.9.12pre1-java lib/pry/commands/gem_install.rb
pry-0.9.11.4 lib/pry/commands/gem_install.rb