Sha256: 56d4fd732e8530a43b25d3ceab43d75c64317e6b61adb244b37115b415972fae

Contents?: true

Size: 1.31 KB

Versions: 20

Compression:

Stored size: 1.31 KB

Contents

# frozen_string_literal: true

class Module
  #   deprecate :foo, deprecator: MyLib.deprecator
  #   deprecate :foo, bar: "warning!", deprecator: MyLib.deprecator
  #
  # A deprecator is typically an instance of ActiveSupport::Deprecation, but you can also pass any object that responds
  # to <tt>deprecation_warning(deprecated_method_name, message, caller_backtrace)</tt> where you can implement your
  # custom warning behavior.
  #
  #   class MyLib::Deprecator
  #     def deprecation_warning(deprecated_method_name, message, caller_backtrace = nil)
  #       message = "#{deprecated_method_name} is deprecated and will be removed from MyLibrary | #{message}"
  #       Kernel.warn message
  #     end
  #   end
  def deprecate(*method_names, deprecator: nil, **options)
    if deprecator.is_a?(ActiveSupport::Deprecation)
      deprecator.deprecate_methods(self, *method_names, **options)
    elsif deprecator
      # we just need any instance to call deprecate_methods, but the deprecation will be emitted by deprecator
      ActiveSupport.deprecator.deprecate_methods(self, *method_names, **options, deprecator: deprecator)
    else
      ActiveSupport.deprecator.warn("Module.deprecate without a deprecator is deprecated")
      ActiveSupport::Deprecation._instance.deprecate_methods(self, *method_names, **options)
    end
  end
end

Version data entries

20 entries across 20 versions & 6 rubygems

Version Path
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/activesupport-7.1.3.4/lib/active_support/core_ext/module/deprecation.rb
activesupport-7.1.5.1 lib/active_support/core_ext/module/deprecation.rb
activesupport-7.1.5 lib/active_support/core_ext/module/deprecation.rb
activesupport-7.1.4.2 lib/active_support/core_ext/module/deprecation.rb
activesupport-7.1.4.1 lib/active_support/core_ext/module/deprecation.rb
activesupport-7.1.4 lib/active_support/core_ext/module/deprecation.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activesupport-7.1.3.4/lib/active_support/core_ext/module/deprecation.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/activesupport-7.1.3.4/lib/active_support/core_ext/module/deprecation.rb
tinymce-rails-7.1.2 vendor/bundle/ruby/3.3.0/gems/activesupport-7.1.3.4/lib/active_support/core_ext/module/deprecation.rb
activesupport-7.1.3.4 lib/active_support/core_ext/module/deprecation.rb
activesupport-7.1.3.2 lib/active_support/core_ext/module/deprecation.rb
activesupport-7.1.3.1 lib/active_support/core_ext/module/deprecation.rb
mlh-rubocop-config-1.0.3 vendor/bundle/ruby/3.2.0/gems/activesupport-7.1.3/lib/active_support/core_ext/module/deprecation.rb
activesupport-7.1.3 lib/active_support/core_ext/module/deprecation.rb
activesupport-7.1.2 lib/active_support/core_ext/module/deprecation.rb
activesupport-7.1.1 lib/active_support/core_ext/module/deprecation.rb
activesupport-7.1.0 lib/active_support/core_ext/module/deprecation.rb
activesupport-7.1.0.rc2 lib/active_support/core_ext/module/deprecation.rb
activesupport-7.1.0.rc1 lib/active_support/core_ext/module/deprecation.rb
activesupport-7.1.0.beta1 lib/active_support/core_ext/module/deprecation.rb