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