return unless defined?(Rails::Server) puts 'MonkeyPatcher runs:' patches = Dir.glob(Rails.root.join('lib', 'monkey_patches', '**', '*.rb')) patches.each do |file| puts "🐵 patching... #{Pathname.new(file).relative_path_from Rails.root}" require file end puts case patches.count when 0 then 'No patch found' when 1 then '1 successful patch applied' else "#{patches.count} successful patches applied" end