Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyObtiva committed Aug 21, 2020
1 parent 4714c8c commit 12ac648
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions README.md
Expand Up @@ -324,7 +324,7 @@ You may disable when needed by not requiring in Ruby or by adding an explicit re

```ruby
gem "awesome_print", require: false
gem "puts_debugger"
gem "puts_debuggerer"
```

### Usage
Expand Down Expand Up @@ -469,7 +469,7 @@ Prints out:
```bash
********************************************************************************
[PD] /Users/User/example.rb:2
[PD] /Users/User/example.rb:1
> pd (x=1), header: true
=> "1"
```
Expand Down Expand Up @@ -513,7 +513,7 @@ pd (x=1), footer: true
Prints out:
```bash
[PD] /Users/User/example.rb:2
[PD] /Users/User/example.rb:1
> pd (x=1), footer: true
=> "1"
********************************************************************************
Expand Down Expand Up @@ -552,16 +552,15 @@ Wrapper to include at the top and bottom of every print out (both header and foo
Example:
```ruby
PutsDebuggerer.wrapper = true
pd (x=1)
pd (x=1), wrapper: true
```
Prints out:
```bash
********************************************************************************
[PD] /Users/User/example.rb:2
> pd x=1
[PD] /Users/User/example.rb:1
> pd x=1, wrapper: true
=> "1"
********************************************************************************
```
Expand Down Expand Up @@ -604,7 +603,7 @@ pd (true ||
Prints out:
```
[PD] /Users/User/example.rb:2
[PD] /Users/User/example.rb:1
> pd (true ||
false), source_line_count: 2
=> "true"
Expand Down Expand Up @@ -684,7 +683,7 @@ pd array
Prints out:
```bash
[PD] /Users/User/example.rb:5
[PD] /Users/User/example.rb:4
> pd array
=> [1, [2, 3]]
```
Expand Down

0 comments on commit 12ac648

Please sign in to comment.