Module: ConvenientService::Utils::Module Private
- Defined in:
- lib/convenient_service/utils/module.rb,
lib/convenient_service/utils/module/exceptions.rb,
lib/convenient_service/utils/module/get_namespace.rb,
lib/convenient_service/utils/module/get_own_const.rb,
lib/convenient_service/utils/module/include_module.rb,
lib/convenient_service/utils/module/fetch_own_const.rb,
lib/convenient_service/utils/module/class_method_defined.rb,
lib/convenient_service/utils/module/get_own_instance_method.rb,
lib/convenient_service/utils/module/has_own_instance_method.rb,
lib/convenient_service/utils/module/instance_method_defined.rb
Overview
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.
Defined Under Namespace
Modules: Exceptions Classes: ClassMethodDefined, FetchOwnConst, GetNamespace, GetOwnConst, GetOwnInstanceMethod, HasOwnInstanceMethod, IncludeModule, InstanceMethodDefined
Class Method Summary collapse
- .class_method_defined? ⇒ Boolean private
- .fetch_own_const ⇒ Object private
- .get_namespace ⇒ Object private
- .get_own_const ⇒ Object private
- .get_own_instance_method ⇒ Object private
- .has_own_instance_method? ⇒ Boolean private
- .include_module? ⇒ Boolean private
- .instance_method_defined? ⇒ Boolean private
Class Method Details
.class_method_defined? ⇒ Boolean
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.
28 29 30 |
# File 'lib/convenient_service/utils/module.rb', line 28 def class_method_defined?(...) ClassMethodDefined.call(...) end |
.fetch_own_const ⇒ 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.
32 33 34 |
# File 'lib/convenient_service/utils/module.rb', line 32 def fetch_own_const(...) FetchOwnConst.call(...) end |
.get_namespace ⇒ 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.
36 37 38 |
# File 'lib/convenient_service/utils/module.rb', line 36 def get_namespace(...) GetNamespace.call(...) end |
.get_own_const ⇒ 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.
44 45 46 |
# File 'lib/convenient_service/utils/module.rb', line 44 def get_own_const(...) GetOwnConst.call(...) end |
.get_own_instance_method ⇒ 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.
40 41 42 |
# File 'lib/convenient_service/utils/module.rb', line 40 def get_own_instance_method(...) GetOwnInstanceMethod.call(...) end |
.has_own_instance_method? ⇒ Boolean
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.
48 49 50 |
# File 'lib/convenient_service/utils/module.rb', line 48 def has_own_instance_method?(...) HasOwnInstanceMethod.call(...) end |
.include_module? ⇒ Boolean
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.
52 53 54 |
# File 'lib/convenient_service/utils/module.rb', line 52 def include_module?(...) IncludeModule.call(...) end |
.instance_method_defined? ⇒ Boolean
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.
56 57 58 |
# File 'lib/convenient_service/utils/module.rb', line 56 def instance_method_defined?(...) InstanceMethodDefined.call(...) end |