Sha256: 3c2b0eb7a01d5dd7b361575aed31f69b1fffcebced40dddf94a7113279ff36c9
Contents?: true
Size: 346 Bytes
Versions: 7
Compression:
Stored size: 346 Bytes
Contents
require 'gorillib/string/inflector' class String def camelize(*args) Gorillib::Inflector.camelize(self, *args) ; end def snakeize(*args) Gorillib::Inflector.snakeize(self, *args) ; end def underscore(*args) Gorillib::Inflector.underscore(self, *args) ; end def demodulize(*args) Gorillib::Inflector.demodulize(self, *args) ; end end
Version data entries
7 entries across 7 versions & 1 rubygems