X-Git-Url: https://git.r.bdr.sh/rbdr/lyricli.rb/blobdiff_plain/ad84791b951f4ebdfae9c6bf0a54244a8b5c8f16..34d0bf15a6f4009de376ceed1d7d5cca24a8dfe7:/doc/Lyricli/Util.html diff --git a/doc/Lyricli/Util.html b/doc/Lyricli/Util.html index 71499bf..b1a24d6 100644 --- a/doc/Lyricli/Util.html +++ b/doc/Lyricli/Util.html @@ -6,7 +6,7 @@
+This module contains several utility functions. +
++Transforms a string from snake_case to UpperCamelCase. +
++Takes a class name in snake_case and attempts to find the corresponding +class from the sources. +
++Simply escapes a param and substitutes spaces and escaped plus signs for +plus signs. +
+
-3 -4 -5+9 +10 +11 |
- # File 'lib/lyricli/util.rb', line 3 +# File 'lib/lyricli/util.rb', line 9 def camelize(str) str.split('_').map {|w| w.capitalize}.join @@ -211,29 +286,82 @@ |