Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/doabit/mongoid_autoinc_id
Auto increment id for mongoid 3.0.0
https://github.com/doabit/mongoid_autoinc_id
Last synced: about 1 month ago
JSON representation
Auto increment id for mongoid 3.0.0
- Host: GitHub
- URL: https://github.com/doabit/mongoid_autoinc_id
- Owner: doabit
- License: mit
- Created: 2012-05-11T03:45:43.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-06-01T15:59:23.000Z (over 12 years ago)
- Last Synced: 2024-09-14T07:28:27.644Z (2 months ago)
- Language: Ruby
- Size: 93.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MongoidAutoincId
Auto increment id for mongoid 3.0.0
## Installation
Add this line to your application's Gemfile:
gem 'mongoid_autoinc_id'
And then execute:
$ bundle
Or install it yourself as:
$ gem install mongoid_autoinc_id
## Requiement
$ mongoid 3.0.0+
## Usage
$ 1.9.3p125 :001 > p = Post.new(title: 'Do it')
$ => #
$ 1.9.3p125 :004 > p.save
$ => true
$ 1.9.3p125 :005 > p.id
$ => 1## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request