No commit activity in last 3 years
No release in over 3 years
Makes enum field from ActiveRecord::Enum more easy use
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 4.1
 Project Readme

Rails Admin Enum 4

Rails Admin plugin for correct view Rails 4.1 Enum


Installation

gem 'rails_admin_enum4', github: 'sibext/rails_admin_enum4'

bundle install

Usage

Generate new model by generator:

rails g model Sibext service:integer

Execute migration:

rake db:migrate

Add enum to your model:

class Sibext < ActiveRecord::Base
  enum service: [:mobile_development, :web_development, :outsorsing]
end

Execute rails with rails admin

Profit!