Gregory Witek
Gregory Witek
Recently I've started wondering why I need to set the relation between the Sorcery and User class twice. First time, when I set `user_class` attribute in initializer, and second time,...
We call this code: ``` ruby current_user.send(config.authentications_class.name.underscore.pluralize) ``` when looking for user authentications. This works if the name of relation is just plural form of the class (`Authentication` -> `user.authentications`)....
Currently only shared controller examples are tested with ORMs different than ActiveRecord. In order to be able to properly decouple and test all ORMs, we should change it, so that...
I'm writing it down here, maybe someone will have some ideas about it. We have this method called `find_by_oauth_credentials`. This method is called in following pieces of code: ``` ruby...