Module: CommandKit::XDG::ModuleMethods Private

Included in:
CommandKit::XDG
Defined in:
lib/command_kit/xdg.rb

This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.

Instance Method Summary collapse

Instance Method Details

#included(context) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Extends ClassMethods or CommandKit::XDG::ModuleMethods, depending on whether CommandKit::XDG is being included into a class or a module.

Parameters:

  • context (Class, Module)

    The class or module which is including CommandKit::XDG.



40
41
42
43
44
45
46
47
48
# File 'lib/command_kit/xdg.rb', line 40

def included(context)
  super(context)

  if context.class == Module
    context.extend ModuleMethods
  else
    context.extend ClassMethods
  end
end