From 99f5cd717fc4a4cb28c6a13ce0927f7bd85d2e2a Mon Sep 17 00:00:00 2001 From: Matchu Date: Tue, 5 Dec 2023 14:55:13 -0800 Subject: [PATCH] Move some model mixins to lib/ The models folder is a bit confusingly large, these are more mixins and kinda clutter it. Push them off into `lib`, I think! I think they used to be in models mainly because Rails used to handle `lib` differently with autoloading, and it made for a worse dev experience. Now it's all the same, though! --- {app/models => lib}/fragment_localization.rb | 0 {app/models => lib}/pretty_param.rb | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename {app/models => lib}/fragment_localization.rb (100%) rename {app/models => lib}/pretty_param.rb (100%) diff --git a/app/models/fragment_localization.rb b/lib/fragment_localization.rb similarity index 100% rename from app/models/fragment_localization.rb rename to lib/fragment_localization.rb diff --git a/app/models/pretty_param.rb b/lib/pretty_param.rb similarity index 100% rename from app/models/pretty_param.rb rename to lib/pretty_param.rb