There's no documentation for this item.
Source Code
# File active_support/values/time_zone.rb, line 219 def tzinfo return @tzinfo if @tzinfo @tzinfo = MAPPING[name] if String === @tzinfo @tzinfo = TZInfo::Timezone.get(@tzinfo) MAPPING[name] = @tzinfo end @tzinfo end
<code/>and<pre/>for code samples.