Methods
Attributes
| [R] | partial_path | |
| [R] | plural | |
| [R] | singular |
Public Class methods
[ show source ]
# File lib/active_support/core_ext/module/model_naming.rb, line 5
5: def initialize(name)
6: super
7: @singular = underscore.tr('/', '_').freeze
8: @plural = @singular.pluralize.freeze
9: @partial_path = "#{tableize}/#{demodulize.underscore}".freeze
10: end