Sha256: 3eabb0ce3374d9f7f40c6b7ed126f7db32ed9fe2ebad1eee7d41644e2d6fac7a
Contents?: true
Size: 1.89 KB
Versions: 2
Compression:
Stored size: 1.89 KB
Contents
# auto_increment [![Build Status](https://travis-ci.org/felipediesel/auto_increment.svg?branch=master)](https://travis-ci.org/felipediesel/auto_increment) [![Coverage Status](https://coveralls.io/repos/felipediesel/auto_increment/badge.svg?branch=master)](https://coveralls.io/r/felipediesel/auto_increment?branch=master) [![Code Climate](https://codeclimate.com/github/felipediesel/auto_increment/badges/gpa.svg)](https://codeclimate.com/github/felipediesel/auto_increment) auto_increment provides automatic incrementation for a integer or string fields in Rails. ## Installation You can use auto_increment as a gem in Rails 4. To use the gem version, put the following gem requirement in your `Gemfile`: gem "auto_increment" ## Usage To work with a auto increment column you used to do sometihng like this in your model: before_create :set_code def set_code max_code = Operation.maximum(:code) self.code = max_code.to_i + 1 end Looks fine, but not when you need to do it over and over again. In fact auto_increment does it under the cover. All you need to do is this: auto_increment And your code field will be incremented ## Customizing So you have a different column or need a scope. auto_increment provides options. You can use it like this: auto_increment column: :letter, scope: [:account_id, :job_id], initial: 'C', force: true * column: the column that will be incremented. Can be integer os string (default: code) * scope: you can define columns that will be scoped and you can use as many as you want (default: nil) * initial: initial value of column (default: 1) * force: you can set a value before create and auto_increment will not change that, but if you do want this, set force to true (default: false) ## Compatibility Tested with Rails 4.0.13 in Ruby 2.0.0 ## License MIT License. Copyright 2011 29sul Tecnologia da Informação <http://www.29sul.com.br/>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
auto_increment-1.1.1 | README.md |
auto_increment-1.1.0 | README.md |