How to get the integer value from enumerize inside a rabl template?

4.3k Views Asked by At

I have the follow model using enumerize gem:

class Event < ActiveRecord::Base
    extend Enumerize
    enumerize :code, in: {dummy: 0, none: 1, panic: 2 }
end

This rabl file returns the strings "dummy", "none" and "panic:

object @event
attributes :code, :address...

And I need to return the integer values of :code.

1

There are 1 best solutions below

2
On BEST ANSWER

Looking at the Enumerize readme on github it states that using .code_value gets the value of the enumeration while .code simply returns the name of the enumeration. That being said, I am not familiar with rabl or its conventions, though if I were simply to guess, try :code_value.

Let me know how it works, sorry if this is of no help.