Project

enum_kit

0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Native PostgreSQL enum support for Ruby on Rails.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.0
~> 13.0
~> 3.8
~> 0.77.0
~> 0.9.20

Runtime

>= 5.2.0
>= 0
 Project Readme

EnumKit

Build Status

EnumKit provides native support for PostgreSQL enums in Ruby on Rails projects.

Installation

You can install EnumKit using the following command:

$ gem install enum_kit

Or, by adding the following to your Gemfile:

gem 'enum_kit', '~> 0.3'

Usage

Here is an example migration file that creates an enum called :shirt_size and then adds it to the :shirts table using the column name :size:

Pro Tip: You can omit the :enum_type attribute when the name of the enum you want to use exactly matches the name of the column you're adding.

class CreateShirts < ActiveRecord::Migration[6.0]
  def change
    create_enum :shirt_size, %i[small medium large]

    create_table :shirts do |t|
      t.string :name
      t.enum   :size, enum_type: :shirt_size

      t.timestamps
    end
  end
end

You can also remove an enum from the database, but you'll need to remove any associated columns first:

class DropShirts < ActiveRecord::Migration[6.0]
  def change
    remove_column :shirts, :size
    drop_enum :shirt_size
  end
end

Once you've defined an enum, you can use it in the associated model with the #pg_enum method:

class Shirt < ActiveRecord::Base
  pg_enum :size
end

Note that you don't need to define the enum's cases again. The #pg_enum method automatically queries the database once when the model is loaded to determine the supported values.


When setting an enum to a value that is not supported, an exception is raised. This can be inconvenient in some cases such as an API where you can't control what value is submitted.

You can disable the default 'exception raising' behaviour by adding a custom initializer to your Rails project:

# Prevent enums from raising exceptions when set to unsupported values.
Rails.application.config.enum_kit.disable_exceptions = true

Please note that this will affect all enums defined in your Rails app, as the pg_enum method simply uses the enum method behind the scenes. There isn't currently an option to set this on a per enum basis.

Development

After checking out the repo, run bundle exec rake spec to run the tests.

To install this gem onto your machine, run bundle exec rake install.