Sha256: 9ab80e56a3714c673d948c6e029a7c68e49b1c90b62b68a346e7127c2d043574

Contents?: true

Size: 1.48 KB

Versions: 135

Compression:

Stored size: 1.48 KB

Contents

class Pry
  class Command::Ri < Pry::ClassCommand
    match 'ri'
    group 'Introspection'
    description 'View ri documentation.'

    banner <<-'BANNER'
      Usage: ri [spec]

      View ri documentation. Relies on the "rdoc" gem being installed.
      See also "show-doc" command.

      ri Array#each
    BANNER

    def process(spec)
      # Lazily load RI
      require 'rdoc/ri/driver'

      unless defined? RDoc::RI::PryDriver

        # Subclass RI so that it formats its output nicely, and uses `lesspipe`.
        subclass = Class.new(RDoc::RI::Driver) # the hard way.

        subclass.class_eval do
          def initialize(pager, opts)
            @pager = pager
            super opts
          end
          def page
            paging_text = StringIO.new
            yield paging_text
            @pager.page(paging_text.string)
          end

          def formatter(io)
            if @formatter_klass
              @formatter_klass.new
            else
              RDoc::Markup::ToAnsi.new
            end
          end
        end

        RDoc::RI.const_set :PryDriver, subclass   # hook it up!
      end

      # Spin-up an RI insance.
      ri = RDoc::RI::PryDriver.new _pry_.pager, :use_stdout => true, :interactive => false

      begin
        ri.display_names [spec]  # Get the documentation (finally!)
      rescue RDoc::RI::Driver::NotFoundError => e
        output.puts "error: '#{e.name}' not found"
      end
    end
  end

  Pry::Commands.add_command(Pry::Command::Ri)
end

Version data entries

135 entries across 128 versions & 29 rubygems

Version Path
pry-0.10.2-java lib/pry/commands/ri.rb
geminfo-0.1.0 path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ri.rb
solidus_backend-1.0.0.pre3 vendor/bundle/gems/pry-0.10.1/lib/pry/commands/ri.rb
solidus_backend-1.0.0.pre2 vendor/bundle/gems/pry-0.10.1/lib/pry/commands/ri.rb
solidus_backend-1.0.0.pre vendor/bundle/gems/pry-0.10.1/lib/pry/commands/ri.rb
pry-0.10.1 lib/pry/commands/ri.rb
pry-0.10.1-i386-mswin32 lib/pry/commands/ri.rb
pry-0.10.1-i386-mingw32 lib/pry/commands/ri.rb
pry-0.10.1-x64-mingw32 lib/pry/commands/ri.rb
pry-0.10.1-java lib/pry/commands/ri.rb
whos_dated_who-0.1.0 vendor/bundle/gems/pry-0.10.0/lib/pry/commands/ri.rb
whos_dated_who-0.0.1 vendor/bundle/gems/pry-0.10.0/lib/pry/commands/ri.rb
pry-0.10.0 lib/pry/commands/ri.rb
pry-0.10.0-i386-mswin32 lib/pry/commands/ri.rb
pry-0.10.0-i386-mingw32 lib/pry/commands/ri.rb
pry-0.10.0-x64-mingw32 lib/pry/commands/ri.rb
pry-0.10.0-java lib/pry/commands/ri.rb
pry-0.10.0.rc1 lib/pry/commands/ri.rb
pry-0.10.0.rc1-i386-mswin32 lib/pry/commands/ri.rb
pry-0.10.0.rc1-i386-mingw32 lib/pry/commands/ri.rb