You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Getting the validate_db_name error when trying to use the rails3-mongoid-devise-template. Apparently this is a problem with the new yaml parser (https://github.com/mongoid/mongoid/issues/648). There is a workaround but I am not sure if this is something that this template should account for?
Workaround:
Add this to environment.rb
require 'yaml'
YAML::ENGINE.yamler= 'syck'
The text was updated successfully, but these errors were encountered:
Getting the validate_db_name error when trying to use the rails3-mongoid-devise-template. Apparently this is a problem with the new yaml parser (https://github.com/mongoid/mongoid/issues/648). There is a workaround but I am not sure if this is something that this template should account for?
Workaround:
Add this to environment.rb
require 'yaml'
YAML::ENGINE.yamler= 'syck'
The text was updated successfully, but these errors were encountered: