Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanckulp authored Dec 26, 2023
1 parent 8185d48 commit 298c4d0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ user.methodz
# returns methods with 'stripe' partial match in definition
user.methodz('stripe')

# returns private methods with 'stripe' partial match
user.methodz(q: 'stripe', type: 'private')
# returns public methods with 'stripe' partial match
user.methodz(q: 'stripe', type: 'public')

# returns public methods with 'password' partial match
user.methodz(q: 'password', type: 'public')
# returns protected methods with 'pass' partial match (ie 'password_reset!')
user.methodz(q: 'password', type: 'protected')

# returns protected methods with 'customer' partial match
user.methodz(q: 'stripe', type: 'private')
# returns private methods with 'customer' partial match
user.methodz(q: 'customer', type: 'private')
```

## Installation
Expand Down

0 comments on commit 298c4d0

Please sign in to comment.