lib/delayed/compatibility.rb in delayed_job-4.1.11 vs lib/delayed/compatibility.rb in delayed_job-4.1.12.rc1

- old
+ new

@@ -1,27 +1,15 @@ require 'active_support/version' module Delayed module Compatibility if ActiveSupport::VERSION::MAJOR >= 4 - require 'active_support/proxy_object' - def self.executable_prefix 'bin' end - - def self.proxy_object_class - ActiveSupport::ProxyObject - end else - require 'active_support/basic_object' - def self.executable_prefix 'script' - end - - def self.proxy_object_class - ActiveSupport::BasicObject end end end end