Guest User

Untitled

a guest
Jun 21st, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. ## in debugger
  2. (rdb:6) test = Content.find(1229)
  3. #<Content id: 1229, data: "[comment_remove_button]">
  4. (rdb:6) test.data.gsub!("[comment_remove_button]", "test")
  5. "test"
  6. (rdb:6) test.reload
  7. #<Content id: 1229, data: "test">
  8.  
  9. ## in console
  10. >> test = Content.find(1229)
  11. => #<Content id: 1229, data: "[comment_remove_button]">
  12. >> test.data.gsub!("[comment_remove_button]", "test")
  13. => "test"
  14. >> test.reload
  15. => #<Content id: 1229, data: "[comment_remove_button]">
  16. >>
Add Comment
Please, Sign In to add comment