Module: ConvenientService::Utils::String Private
- Defined in:
- lib/convenient_service/utils/string.rb,
lib/convenient_service/utils/string/split.rb,
lib/convenient_service/utils/string/enclose.rb,
lib/convenient_service/utils/string/camelize.rb,
lib/convenient_service/utils/string/truncate.rb,
lib/convenient_service/utils/string/demodulize.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
Classes: Camelize, Demodulize, Enclose, Split, Truncate
Class Method Summary collapse
- .camelize ⇒ Object private
- .demodulize ⇒ Object private
- .enclose ⇒ Object private
- .split ⇒ Object private
- .truncate ⇒ Object private
Class Method Details
.camelize ⇒ 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.
18 19 20 |
# File 'lib/convenient_service/utils/string.rb', line 18 def camelize(...) Camelize.call(...) end |
.demodulize ⇒ 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.
22 23 24 |
# File 'lib/convenient_service/utils/string.rb', line 22 def demodulize(...) Demodulize.call(...) end |
.enclose ⇒ 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.
26 27 28 |
# File 'lib/convenient_service/utils/string.rb', line 26 def enclose(...) Enclose.call(...) end |