# File lib/juicer/ext/string.rb, line 42 def underscore self.split(/([A-Z][^A-Z]*)/).find_all { |str| str != "" }.join("_").downcase end