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
+## Using with PaperTrail
+
+paper_trail uses yaml as
+the default object serializer which causes some issues with carrierwave
+objects if you are using multiple file uploads.
+In order to make it work you either need to use mount_on option
+with your image gallery or change the default serializer to be json.
+
+ruby +PaperTrail.serializer = PaperTrail::Serializers::JSON +
+