# File lib/ruote/util/hashdot.rb, line 67
    def self.included(target)

      def target.h_reader(*names)
        names.each do |name|
          define_method(name) do
            @h[name.to_s]
          end
        end
      end
    end