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
asana2flowdock-1.0.0 vendor/bundle/ruby/1.9.1/gems/pry-0.9.12.6/lib/pry/commands/gem_install.rb
pry-0.9.12.6 lib/pry/commands/gem_install.rb
pry-0.9.12.6-i386-mswin32 lib/pry/commands/gem_install.rb
pry-0.9.12.6-i386-mingw32 lib/pry/commands/gem_install.rb
pry-0.9.12.6-java lib/pry/commands/gem_install.rb
pry-0.9.12.5 lib/pry/commands/gem_install.rb
pry-0.9.12.5-i386-mswin32 lib/pry/commands/gem_install.rb
pry-0.9.12.5-i386-mingw32 lib/pry/commands/gem_install.rb
pry-0.9.12.5-java lib/pry/commands/gem_install.rb
pry-0.9.12.4 lib/pry/commands/gem_install.rb
pry-0.9.12.4-i386-mswin32 lib/pry/commands/gem_install.rb
pry-0.9.12.4-i386-mingw32 lib/pry/commands/gem_install.rb
pry-0.9.12.4-java lib/pry/commands/gem_install.rb
pry-0.9.12.3 lib/pry/commands/gem_install.rb
pry-0.9.12.3-i386-mswin32 lib/pry/commands/gem_install.rb
pry-0.9.12.3-i386-mingw32 lib/pry/commands/gem_install.rb
pry-0.9.12.3-java lib/pry/commands/gem_install.rb
torquebox-console-0.3.0 vendor/bundle/jruby/1.9/gems/pry-0.9.12-java/lib/pry/commands/gem_install.rb
sshp-0.0.2 vendor/ruby/1.9.1/gems/pry-0.9.12.2/lib/pry/commands/gem_install.rb
sshp-0.0.1 vendor/ruby/1.9.1/gems/pry-0.9.12.2/lib/pry/commands/gem_install.rb