class TZInfo::InfoTimezone

:nodoc:
A Timezone based on a TimezoneInfo.

def self.new(info)

Constructs a new InfoTimezone with a TimezoneInfo instance.
def self.new(info)      
  tz = super()
  tz.send(:setup, info)
  tz
end

def identifier

The identifier of the timezone, e.g. "Europe/Paris".
def identifier
  @info.identifier
end

def info

The TimezoneInfo for this Timezone.
def info
  @info
end

def setup(info)

def setup(info)
  @info = info
end