Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Rails Date Formats

// cribbed from http://wiki.rubyonrails.org/rails/pages/HowToDefineYourOwnDateFormat

   1  
   2  my_formats = {
   3    :my_format_1 => '%l %p, %b %d, %Y',
   4    :my_format_2  => '%l:%M %p, %B %d, %Y'
   5  }
   6  
   7  ActiveSupport::CoreExtensions::Time::Conversions::DATE_FORMATS.merge!(my_formats)
   8  ActiveSupport::CoreExtensions::Date::Conversions::DATE_FORMATS.merge!(my_formats)
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS