Module: StringUtilityNativeExtensionDocumentationStubs

Defined in:
lib/utils.rb

Overview

A module that contains stub methods for the Rust native extension methods.

Instance Method Summary collapse

Instance Method Details

#spacifyString

Replaces all underscores with whitespace.

Returns:

  • (String)

    The string with replaced underscores.



82
# File 'lib/utils.rb', line 82

def spacify; end

#underscorifyString

Replaces all whitespace with underscores.

Returns:

  • (String)

    The string with replaced whitespace.



78
# File 'lib/utils.rb', line 78

def underscorify; end