<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
        integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
        crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
</html>
# frozen_string_literal: true
unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED
  require 'json'
end

class String
  # call-seq: json_create(o)
  #
  # Raw Strings are JSON Objects (the raw bytes are stored in an array for the
  # key "raw"). The Ruby String can be created by this class method.
  def self.json_create(object)
    object["raw"].pack("C*")
  end

  # call-seq: to_json_raw_object()
  #
  # This method creates a raw object hash, that can be nested into
  # other data structures and will be generated as a raw string. This
  # method should be used, if you want to convert raw strings to JSON
  # instead of UTF-8 strings, e. g. binary data.
  def to_json_raw_object
    {
      JSON.create_id => self.class.name,
      "raw" => unpack("C*"),
    }
  end

  # call-seq: to_json_raw(*args)
  #
  # This method creates a JSON text from the result of a call to
  # to_json_raw_object of this String.
  def to_json_raw(...)
    to_json_raw_object.to_json(...)
  end
end
