https://github.com/phusion/activerecord-string-enum
Make ActiveRecord 4's Enum store as strings instead of integers.
https://github.com/phusion/activerecord-string-enum
Last synced: about 1 year ago
JSON representation
Make ActiveRecord 4's Enum store as strings instead of integers.
- Host: GitHub
- URL: https://github.com/phusion/activerecord-string-enum
- Owner: phusion
- License: mit
- Created: 2015-03-16T14:14:22.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2024-01-03T21:39:13.000Z (over 2 years ago)
- Last Synced: 2025-05-18T18:51:35.015Z (about 1 year ago)
- Language: Ruby
- Size: 14.6 KB
- Stars: 0
- Watchers: 7
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Activerecord::StringEnum
Make ActiveRecord 4's Enum store as strings instead of integers.
## Installation
Add this line to your application's Gemfile:
```ruby
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
1. Fork it ( https://github.com/phusion/activerecord-string-enum/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request