Browse Source

monkey_patcher

pagy
pvincent 4 weeks ago
parent
commit
2bdee04675
  1. 8
      config/initializers/monkey_patcher.rb

8
config/initializers/monkey_patcher.rb

@ -1,14 +1,14 @@
return unless defined?(Rails::Server)
puts '🐵 MonkeyPatcher runs:'
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}"
puts "🐵 patching... #{Pathname.new(file).relative_path_from Rails.root}"
require file
end
puts "📌 "+ case patches.count
puts case patches.count
when 0 then 'No patch found'
when 1 then '1 successful patch applied'
else "#{count} successful patch applied"
else "#{patches.count} successful patches applied"
end
Loading…
Cancel
Save