Guest User

Untitled

a guest
Jun 18th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. # exemplo no mundo Rails
  2. respond_with cliente.tap do |c|
  3. c.update_attributes params
  4. c.save
  5. end
  6.  
  7. # exemplo para debug
  8. respond_with Client.load(15L).tap {|c| puts c.name}
Add Comment
Please, Sign In to add comment