We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am using rubygems version of MotionModel
(upgrading to master or rc1.0 I get date_parse errors (format is "2013-07-17T06:54:43Z" )
my after_save(sender) method includes put ''aftersave'
callback fires on initial save
(main)> p = Post.new => Post#87:0xc555430 (main)> p.save ;nil aftersave => nil
callback does not fire on subsequent saves:
(main)> p = Post.last => Post#87:0xc555430 (main)> p.save ;nil => nil
(main)> p = Post.last => Post#87:0xc555430 (main)> p.body = 'xyz' => "xyz" (main)> p.save ;nil => nil
The text was updated successfully, but these errors were encountered:
Can you please provide a failing spec as a gist called after_save_issue_72_spec.rb so I can make sure this is regression tested?
after_save_issue_72_spec.rb
Sorry, something went wrong.
No branches or pull requests
I am using rubygems version of MotionModel
(upgrading to master or rc1.0 I get date_parse errors (format is "2013-07-17T06:54:43Z" )
my after_save(sender) method includes put ''aftersave'
callback fires on initial save
(main)> p = Post.new
=> Post#87:0xc555430
(main)> p.save ;nil
aftersave
=> nil
callback does not fire on subsequent saves:
(main)> p = Post.last
=> Post#87:0xc555430
(main)> p.save ;nil
=> nil
(main)> p = Post.last
=> Post#87:0xc555430
(main)> p.body = 'xyz'
=> "xyz"
(main)> p.save ;nil
=> nil
The text was updated successfully, but these errors were encountered: