method

local_constants

v5.0.0.1 - Show latest stable - Class: Module
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