I am updating my application from rails 4 to rails 5. My application is using activeuuid gem. The activeuuid gem is using alias_method_chain internally and this method is deprecated in rails 5. Now when I am trying to start rails console, I am getting error -
undefined method `alias_method_chain' for ActiveRecord::ConnectionAdapters::Column:Class (NoMethodError)
Is there anyway I can continue using activeuuid gem in rails 5 and does not need to do any rework?