Class: Cistern::String
- Inherits:
-
Object
- Object
- Cistern::String
- Defined in:
- lib/cistern/string.rb
Class Method Summary collapse
-
.demodulize(path) ⇒ Object
stolen from activesupport/lib/active_support/inflector/methods.rb, line 198.
-
.underscore(camel_cased_word) ⇒ Object
stolen from activesupport/lib/active_support/inflector/methods.rb, line 90.
Class Method Details
.demodulize(path) ⇒ Object
stolen from activesupport/lib/active_support/inflector/methods.rb, line 198
3 4 5 6 7 8 9 10 |
# File 'lib/cistern/string.rb', line 3 def self.demodulize(path) path = path.to_s if i = path.rindex('::') path[(i+2)..-1] else path end end |
.underscore(camel_cased_word) ⇒ Object
stolen from activesupport/lib/active_support/inflector/methods.rb, line 90
13 14 15 16 17 18 19 20 21 22 |
# File 'lib/cistern/string.rb', line 13 def self.underscore(camel_cased_word) return camel_cased_word unless camel_cased_word =~ /[A-Z-]|::/ word = camel_cased_word.to_s.gsub(/::/, '/') #word.gsub!(/(?:(?<=([A-Za-z\d]))|\b)(#{inflections.acronym_regex})(?=\b|[^a-z])/) { "#{$1 && '_'}#{$2.downcase}" } word.gsub!(/([A-Z\d]+)([A-Z][a-z])/,'\1_\2') word.gsub!(/([a-z\d])([A-Z])/,'\1_\2') word.tr!("-", "_") word.downcase! word end |