From c08945e42bd801ed50cb9f7bb16608a3461b40a9 Mon Sep 17 00:00:00 2001
From: Gabriel Arazas <foodogsquared@foodogsquared.one>
Date: Sat, 27 May 2023 19:33:48 +0800
Subject: [PATCH] Create dedicated user agent for my application

---
 gems/lib/asciidoctor/helpers.rb | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/gems/lib/asciidoctor/helpers.rb b/gems/lib/asciidoctor/helpers.rb
index 2158b38..c5e1f99 100644
--- a/gems/lib/asciidoctor/helpers.rb
+++ b/gems/lib/asciidoctor/helpers.rb
@@ -9,3 +9,12 @@ class String
         .downcase
   end
 end
+
+module Asciidoctor
+  module FoodogsquaredCustomExtensions
+    NAME = 'asciidoctor-foodogsquared-custom-extensions'
+    VERSION = '1.0.0'
+    CONTACT_EMAIL = 'foodogsquared@foodogsquared.one'
+    USER_AGENT = "#{NAME}/#{VERSION} ( #{CONTACT_EMAIL} )"
+  end
+end