method

local_constants

rails latest stable - Class: Module

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v5.0.0.1) is shown here.

local_constants()
public

No documentation available.

# File activesupport/lib/active_support/core_ext/module/introspection.rb, line 59
  def local_constants #:nodoc:
    ActiveSupport::Deprecation.warn(      Module#local_constants is deprecated and will be removed in Rails 5.1.      Use Module#constants(false) instead..squish)
    constants(false)
  end