You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
407 B
12 lines
407 B
return unless Rails.application.server? || Rails.application.console?
|
|
|
|
require_relative '../../lib/monkey_patches/monkey_patcher'
|
|
|
|
MonkeyPatcher.run do |patch|
|
|
case patch
|
|
when 'action_dispatch/middleware/debug_exceptions.rb' then Rails.application.server?
|
|
when 'rails_live_reload/watcher.rb' then Rails.application.server? && Rails.env.development?
|
|
when /^semantic/ then true
|
|
else false
|
|
end
|
|
end
|