Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/emancu/ork-contrib
All the Ork plugins together
https://github.com/emancu/ork-contrib
Last synced: 24 days ago
JSON representation
All the Ork plugins together
- Host: GitHub
- URL: https://github.com/emancu/ork-contrib
- Owner: emancu
- License: mit
- Created: 2014-02-14T21:11:54.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-04-23T18:12:06.000Z (over 10 years ago)
- Last Synced: 2024-10-25T01:43:45.081Z (2 months ago)
- Language: Ruby
- Size: 156 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
ork-contrib
===========All the Ork plugins together
## List of Plugins
- [ork-hooks](https://github.com/emancu/ork-hooks)
- [ork-encryption](https://github.com/emancu/ork-encryption)
- [ork-timestamps](https://github.com/emancu/ork-timestamps)## Contrib scope
`ork-contrib` will add those plugins which are frequently used and do not change persistence.
When you add `ork-contrib` to your dependencies file, and your code the following gems will be added:
- [ork-hooks](https://github.com/emancu/ork-hooks)
- [ork-timestamps](https://github.com/emancu/ork-timestamps)## Getting started
Add `Ork::Contrib` to add all the _plugins_ to your `Ork` models.
```ruby
class Post
include Ork::Document
include Ork::Contrib
end
```Now, `Post` has timestamps attributes and the common hooks.