Method: StringExtensions#to_downcase_str_arr
- Defined in:
- lib/extensions/string_extensions.rb
#to_downcase_str_arr(del = ',') ⇒ Object
22 23 24 |
# File 'lib/extensions/string_extensions.rb', line 22 def to_downcase_str_arr(del=',') self.split(del).collect{|x| x.to_s.downcase} end |