New answers tagged rdoc
0
Why do I get “conflicting chdir during another chdir block” when updating Rubygems on Mountain Lion?
You are running an old version of Ruby. 1.9 has come and gone and we're now on 2.0, so you might want to consider updating your Ruby.
I will NOT recommend updating the version installed by Apple. That is there for their own purposes so leave it alone.
Instead, use either rbenv or RVM to install "sandboxed" Rubies in your own home directory, which allows ...
0
You could use a post-install message to explain that they can make it install quicker by running what @shime suggested: echo 'gem: --no-ri --no-rdoc' > ~/.gemrc
6
First you need to install
gem install pry-doc
Then you can get documentation with the show-doc command
pry> x = 'potato'
=> "potato"
pry> show-doc x.strip
From: string.c (C Method):
Owner: String
Visibility: public
Signature: strip()
Number of lines: 4
Returns a copy of str with leading and trailing whitespace removed.
" hello ...
Top 50 recent answers are included