Sha256: c3c2706f399dba33465753a0283f6e4538b07a7df6e98e10f0e29bc69e92b235

Contents?: true

Size: 1.43 KB

Versions: 1

Compression:

Stored size: 1.43 KB

Contents

module DatePicker
  module Mappings
    def self.moment
      {
        # Escape sequence
        __: '[*]', 
        # Year with century
        Y: 'YYYY',
        # Year without a century (00..99)
        y: 'YY',
        # Day of month, blank-padded (1..31)
        e: 'D',
        # Day of the month (01..31)
        d: 'DD',
        # Day of the year (001..366)
        j: 'DDD',
        # The abbreviated weekday name (“Sun”)
        a: 'ddd',
        # The full weekday name (“Sunday”)
        A: 'dddd',
        # Month of the year (01..12)
        m: 'MM',
        # The full month name (“January”)
        B: 'MMMM',
        # The abbreviated month name (“Jan”)
        b: 'MMM',
        # Hour of the day, 24-hour clock (00..23)
        H: 'HH',
        # Hour of the day, 12-hour clock (01..12)
        I: 'hh',
        # Minute of the hour (00..59)
        M: 'mm',
        # Second of the minute (00..60)
        S: 'ss',
        # Meridian indicator (“AM” or “PM”)
        p: 'A',
        # Week number of the current year, starting with the first Sunday as the first day of the first week (00..53)
        U: 'ww',
        # Week number of the current year, starting with the first Monday as the first day of the first week (00..53)
        W: 'WW',
        # Day of the week (Sunday is 0, 0..6)
        w: 'd',
        # Time zone as hour and minute offset from UTC (e.g. +0900)
        z: 'ZZ'
      }
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
date_picker-0.0.9 lib/date_picker/mappings/moment.rb