Google

# File rbot/registry.rb, line 179
    def each_key(&block)
      @registry.each {|key, value|
        if key.gsub!(/^#{Regexp.escape(@prefix)}/, "")
          block.call(key)
        end
      }
    end