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')
$ => #<Post _id: , _type: nil, title: 'Do it', body: nil>
$ 1.9.3p125 :004 > p.save
$ => true
$ 1.9.3p125 :005 > p.id
$ => 1
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request