Activerecord::StringEnum
Make ActiveRecord 4's Enum store as strings instead of integers.
Installation
Add this line to your application's Gemfile:
gem 'activerecord-string-enum'
And then execute:
$ bundle
Or install it yourself as:
$ gem install activerecord-string-enum
Usage
class Task < ActiveRecord::Base
extend ActiveRecord::StringEnum
str_enum :status, [:running, :finished]
end
Contributing
- Fork it ( https://github.com/phusion/activerecord-string-enum/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request