Module: ICU::TimeFormatting
- Defined in:
- lib/ffi-icu/time_formatting.rb
Defined Under Namespace
Classes: BaseFormatter, DateTimeFormatter
Constant Summary collapse
- TZ_MAP =
{ :generic_location => 'VVVV',# The generic location format. # Where that is unavailable, falls back to the long localized GMT format ("OOOO"; # Note: Fallback is only necessary with a GMT-style Time Zone ID, like Etc/GMT-830.), # This is especially useful when presenting possible timezone choices for user selection, # since the naming is more uniform than the "v" format. # such as "United States Time (New York)", "Italy Time" :generic_long => 'vvvv', # The long generic non-location format. # Where that is unavailable, falls back to generic location format ("VVVV")., such as "Eastern Time". :generic_short => 'v', # The short generic non-location format. # Where that is unavailable, falls back to the generic location format ("VVVV"), # then the short localized GMT format as the final fallback., such as "ET". :specific_long => 'zzzz', # The long specific non-location format. # Where that is unavailable, falls back to the long localized GMT format ("OOOO"). :specific_short => 'z', # The short specific non-location format. # Where that is unavailable, falls back to the short localized GMT format ("O"). :basic => 'Z', # The ISO8601 basic format with hours, minutes and optional seconds fields. # The format is equivalent to RFC 822 zone format (when optional seconds field is absent). # This is equivalent to the "xxxx" specifier. :localized_long => 'ZZZZ', # The long localized GMT format. This is equivalent to the "OOOO" specifier, such as GMT-8:00 :extended => 'ZZZZZ', # The ISO8601 extended format with hours, minutes and optional seconds fields. # The ISO8601 UTC indicator "Z" is used when local time offset is 0. # This is equivalent to the "XXXXX" specifier, such as -08:00 -07:52:58 :localized_short => 'O', # The short localized GMT format, such as GMT-8 :localized_longO => 'OOOO', # The long localized GMT format, such as GMT-08:00 :tz_id_short => 'V', # The short time zone ID. Where that is unavailable, # the special short time zone ID unk (Unknown Zone) is used. # Note: This specifier was originally used for a variant of the short specific non-location format, # but it was deprecated in the later version of this specification. In CLDR 23, the definition # of the specifier was changed to designate a short time zone ID, such as uslax :tz_id_long => 'VV', # The long time zone ID, such as America/Los_Angeles :city_location => 'VVV', # The exemplar city (location) for the time zone. Where that is unavailable, # the localized exemplar city name for the special zone Etc/Unknown is used as the fallback # (for example, "Unknown City"), such as Los Angeles # see: http://unicode.org/reports/tr35/tr35-dates.html#Date_Format_Patterns }
- HOUR_CYCLE_SYMS =
{ 'h11' => 'K', 'h12' => 'h', 'h23' => 'H', 'h24' => 'k', :locale => 'j', }
Class Method Summary collapse
- .clear_default_options ⇒ Object
- .create(options = {}) ⇒ Object
- .format(dt, options = {}) ⇒ Object
- .set_default_options(options) ⇒ Object
Class Method Details
.clear_default_options ⇒ Object
55 56 57 |
# File 'lib/ffi-icu/time_formatting.rb', line 55 def self. @default_options.clear end |
.create(options = {}) ⇒ Object
51 52 53 |
# File 'lib/ffi-icu/time_formatting.rb', line 51 def self.create( = {}) DateTimeFormatter.new(@default_options.merge()) end |
.format(dt, options = {}) ⇒ Object
63 64 65 |
# File 'lib/ffi-icu/time_formatting.rb', line 63 def self.format(dt, = {}) create(@default_options.merge()).format(dt) end |
.set_default_options(options) ⇒ Object
59 60 61 |
# File 'lib/ffi-icu/time_formatting.rb', line 59 def self.() @default_options.merge!() end |