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.

Since:

  • 1.0.0

Defined Under Namespace

Classes: Camelize, Demodulize, Enclose, Split, Tab, 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



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

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



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

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



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

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



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

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

.tabObject

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



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

def tab(...)
  Tab.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



39
40
41
# File 'lib/convenient_service/utils/string.rb', line 39

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