Module | DateAndTimeFormatting::ClassMethods |
In: |
lib/merb-helpers/date_time_formatting.rb
|
Adds a date and time format
Because this operation is not thread safe, you should define custom formats when you load you application. The recommended way to do that, is to use the before_app_loads bootloader.
If you want to add a format at runtime, you will need to use a mutex and synchronize it yourself.
key<Symbol>: | name of the format |
format<Hash>: | time format to use |
Hash: | a hash with all formats available |
Merb::BootLoader.before_app_loads do Date.add_format(:matt, "%H:%M:%S %Y-%m-%d") end
— @public