Use this module to check model state in after_commit callback, if it was created or updated.
Add the following to your Gemfile:
gem 'after_commit_state'
Now you can use it in ActiveRecord model after_commit callback
after_commit :after_commit_hook
def after_commit_hook
puts 'Created' if created?
puts 'Updated' if updated?
end