Method: String#tableize
- Defined in:
- lib/strokedb/core_ext/string.rb
#tableize ⇒ Object
18 19 20 21 22 |
# File 'lib/strokedb/core_ext/string.rb', line 18 def tableize words = snake_case.split('_') words.last.replace words.last.plural words.join('_') end |