Guest User

Untitled

a guest
Jun 21st, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. [4] pry(#<Post>):1> nesting
  2. Nesting status:
  3. --
  4. 0. main (Pry top level)
  5. 1. #<Post>
  6. [5] pry(#<Post>):1> self.to_s
  7. => "#<Post:0x007fdb6eee4e58>"
  8. [6] pry(#<Post>):1> self.title = 'some new title'
  9. => "some new title"
  10. [7] pry(#<Post>):1> self.body = 'some new body'
  11. => "some new body"
  12. [8] pry(#<Post>):1> self.changes
  13. => {"title"=>["First Post", "some new title"],
  14. "body"=>
  15. ["This is the first post in our system", "some new body"]}
Add Comment
Please, Sign In to add comment