Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/magnusvk/after_commit_action
Easily defer blocks of code to the after-commit action of an ActiveRecord model.
https://github.com/magnusvk/after_commit_action
Last synced: 19 days ago
JSON representation
Easily defer blocks of code to the after-commit action of an ActiveRecord model.
- Host: GitHub
- URL: https://github.com/magnusvk/after_commit_action
- Owner: magnusvk
- License: mit
- Created: 2012-05-23T20:54:44.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2022-06-25T02:39:15.000Z (over 2 years ago)
- Last Synced: 2025-01-02T08:44:23.097Z (22 days ago)
- Language: Ruby
- Homepage:
- Size: 53.7 KB
- Stars: 34
- Watchers: 4
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# after_commit_action
Use this module to defer actions to the after-commit hook. This is useful if you want to trigger actions in after_create, after_destroy and after_update callbacks but want to execute them outside of the transaction (for example, to avoid deadlocks).
## Usage
```ruby
include AfterCommitAction
after_create :my_hook
def my_hook
execute_after_commit { puts "This is called after committing the transaction. "}
end
```## Contributing to after_commit_action
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
* Fork the project.
* Start a feature/bugfix branch.
* Commit and push until you are happy with your contribution.
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.## Copyright
Copyright (c) 2012 BestVendor. See LICENSE.txt for
further details.