I used the gem enumerated_attribute; however, the gem is not up to date and for last version I must use the git repo.
So I changed my gemfile as follows:
#gem 'enumerated_attribute'
gem "edave-enumerated_attribute", :git => "https://github.com/edave/enumerated_attribute.git"
After that I ran bundle install which removed the gem and copied the repo.
Now the rail apps react as if enumerated is not installed:
undefined method `enum_attr' for #<Class:0xa90d1c0>
What did I miss?