module DateAndTimeFormatting

Public Class Methods

included(base) click to toggle source
# File lib/merb-helpers/date_time_formatting.rb, line 3
def self.included(base)
  base.class_eval do
    include DateAndTimeFormatting::InstanceMethods
    include OrdinalizedFormatting
    extend DateAndTimeFormatting::ClassMethods
  end
end