Skip to content

A small library that transforms UI strings into strings that can be used as method names.

Notifications You must be signed in to change notification settings

jfitisoff/methodize_string

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

methodize_string

A small library that transforms UI strings into strings that can be used as method names.

It adds two methods to the String class:

String#methodize

String.methodize!

Basic usage:

require 'methodize_string'

'Save Changes'.methodize
=> "save_changes"

'Continue Reading...'.methodize
=> "continue_reading"

Accented character handling:

# By default, accented characters will be converted to non-accented characters.
"Ä Ö Ü".methodize
=> "a_o_u"

# But this behavior can be overridden.
"Ä Ö Ü".methodize(transliterate: false)
=> "ä_ö_ü"

Error handling:

# The non-bang method won't raise an error. It will just return nil if the string
# can't be converted.
''.methodize
=> nil

# The bang method raises an ArgumentError in cases where the string can't be converted.
''.methodize!
ArgumentError: Unable to convert string to a method string: ''

Limitations

  • English only.
  • Limited support for numbers in strings.
  • No support for things like currency codes, etc., at the moment.

About

A small library that transforms UI strings into strings that can be used as method names.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages