Module: ConvenientService::Utils::String Private
- Defined in:
- lib/convenient_service/utils/string.rb,
lib/convenient_service/utils/string/tab.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, Tab, Truncate
Class Method Summary collapse
- .camelize ⇒ Object private
- .demodulize ⇒ Object private
- .enclose ⇒ Object private
- .split ⇒ Object private
- .tab ⇒ 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.
19 20 21 |
# File 'lib/convenient_service/utils/string.rb', line 19 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.
23 24 25 |
# File 'lib/convenient_service/utils/string.rb', line 23 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.
27 28 29 |
# File 'lib/convenient_service/utils/string.rb', line 27 def enclose(...) Enclose.call(...) end |
.split ⇒ 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.
35 36 37 |
# File 'lib/convenient_service/utils/string.rb', line 35 def split(...) Split.call(...) end |