Update pry again

This commit is contained in:
Rico Sta. Cruz 2015-10-15 19:02:19 +08:00
parent 2be8dda9f0
commit d433fac32a
1 changed files with 11 additions and 8 deletions

19
pry.md
View File

@ -61,18 +61,14 @@ layout: default
> hist # History > hist # History
> wtf? # Trace of recent exception > wtf? # Trace of recent exception
## Rails
### Rails console ### Rails console
Also consider [pry-rails](https://rubygems.org/gems/pry-rails). Also consider [pry-rails](https://rubygems.org/gems/pry-rails).
$ pry -r ./config/environment $ pry -r ./config/environment
### Bonus: hirb
> table User.all
> view User.all
> view User.all, fields: %w[id name email]
### Rails ### Rails
> show-models > show-models
@ -94,7 +90,7 @@ Also consider [pry-rails](https://rubygems.org/gems/pry-rails).
> ls -G xx # Grey by regex > ls -G xx # Grey by regex
### Shell integration ## Shell integration
shell-mode adds dir to the prompt. shell-mode adds dir to the prompt.
@ -105,7 +101,14 @@ Commands with `.` are shell commands.
pry(main)> .cat hello.txt pry(main)> .cat hello.txt
### Reference ## hirb
Add the [hirb](https://rubygems.org/gems/hirb) gem.
> table User.all
> view User.all
> view User.all, fields: %w[id name email]
## Reference
* [Pry](https://github.com/pry/pry) * [Pry](https://github.com/pry/pry)
* [Hirb](https://github.com/cldwalker/hirb) * [Hirb](https://github.com/cldwalker/hirb)