# File lib/xiron/config.rb, line 34
    def initialize(key)
      xine = Xine.new
      @key = key
      @value, @default, @domain, @description, @help, @level = xine.config_lookup(key)

      if block_given?
        yield self
        commit
      end
    end