jeffp / enumerated_attribute

Easy enum for your models, objects and views
MIT License
190 stars 63 forks source link

Use in multiple models? #39

Open cj opened 12 years ago

cj commented 12 years ago

Hi,

Is it posible to define a GenderEnum like:

require 'enumerated_attribute'

class GenderEnum
  enum_attr :gender, %w(male female)
end

and use it in many models?

Many thanks