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.

Since:

  • 1.0.0

Defined Under Namespace

Classes: Camelize, Demodulize, Enclose, Split, Truncate

Class Method Summary collapse

Class Method Details

.camelizeObject

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.

Since:

  • 1.0.0



18
19
20
# File 'lib/convenient_service/utils/string.rb', line 18

def camelize(...)
  Camelize.call(...)
end

.demodulizeObject

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.

Since:

  • 1.0.0



22
23
24
# File 'lib/convenient_service/utils/string.rb', line 22

def demodulize(...)
  Demodulize.call(...)
end

.encloseObject

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.

Since:

  • 1.0.0



26
27
28
# File 'lib/convenient_service/utils/string.rb', line 26

def enclose(...)
  Enclose.call(...)
end

.splitObject

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.

Since:

  • 1.0.0



30
31
32
# File 'lib/convenient_service/utils/string.rb', line 30

def split(...)
  Split.call(...)
end

.truncateObject

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.

Since:

  • 1.0.0



34
35
36
# File 'lib/convenient_service/utils/string.rb', line 34

def truncate(...)
  Truncate.call(...)
end