Sha256: f8cac4c29fdc10f67504363d824b161aa27ae5b5ba38a25491b8cadcba72aceb

Contents?: true

Size: 1.41 KB

Versions: 48

Compression:

Stored size: 1.41 KB

Contents

# frozen_string_literal: true

require "active_support/inflector"

class Module
  # Returns the name of the module containing this one.
  #
  #   M::N.parent_name # => "M"
  def parent_name
    if defined?(@parent_name)
      @parent_name
    else
      parent_name = name =~ /::[^:]+\Z/ ? $`.freeze : nil
      @parent_name = parent_name unless frozen?
      parent_name
    end
  end

  # Returns the module which contains this one according to its name.
  #
  #   module M
  #     module N
  #     end
  #   end
  #   X = M::N
  #
  #   M::N.parent # => M
  #   X.parent    # => M
  #
  # The parent of top-level and anonymous modules is Object.
  #
  #   M.parent          # => Object
  #   Module.new.parent # => Object
  def parent
    parent_name ? ActiveSupport::Inflector.constantize(parent_name) : Object
  end

  # Returns all the parents of this module according to its name, ordered from
  # nested outwards. The receiver is not contained within the result.
  #
  #   module M
  #     module N
  #     end
  #   end
  #   X = M::N
  #
  #   M.parents    # => [Object]
  #   M::N.parents # => [M, Object]
  #   X.parents    # => [M, Object]
  def parents
    parents = []
    if parent_name
      parts = parent_name.split("::")
      until parts.empty?
        parents << ActiveSupport::Inflector.constantize(parts * "::")
        parts.pop
      end
    end
    parents << Object unless parents.include? Object
    parents
  end
end

Version data entries

48 entries across 48 versions & 7 rubygems

Version Path
activesupport-5.2.8.1 lib/active_support/core_ext/module/introspection.rb
activesupport-5.2.8 lib/active_support/core_ext/module/introspection.rb
activesupport-5.2.7.1 lib/active_support/core_ext/module/introspection.rb
activesupport-5.2.7 lib/active_support/core_ext/module/introspection.rb
activesupport-5.2.6.3 lib/active_support/core_ext/module/introspection.rb
activesupport-5.2.6.2 lib/active_support/core_ext/module/introspection.rb
activesupport-5.2.6.1 lib/active_support/core_ext/module/introspection.rb
activesupport-5.2.6 lib/active_support/core_ext/module/introspection.rb
activesupport-5.2.4.6 lib/active_support/core_ext/module/introspection.rb
activesupport-5.2.5 lib/active_support/core_ext/module/introspection.rb
activesupport-5.2.4.5 lib/active_support/core_ext/module/introspection.rb
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.4.1/lib/active_support/core_ext/module/introspection.rb
activesupport-5.2.4.4 lib/active_support/core_ext/module/introspection.rb
activesupport-5.2.4.3 lib/active_support/core_ext/module/introspection.rb
activesupport-5.2.4.2 lib/active_support/core_ext/module/introspection.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.4.0/gems/activesupport-5.2.4.1/lib/active_support/core_ext/module/introspection.rb
activesupport-5.2.4.1 lib/active_support/core_ext/module/introspection.rb
zuora_connect_ui-0.10.0 vendor/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module/introspection.rb
activesupport-5.2.4 lib/active_support/core_ext/module/introspection.rb
activesupport-5.2.4.rc1 lib/active_support/core_ext/module/introspection.rb