From debf41c5a732aca6ea77bea1ccbbd24d99fabeb8 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Sat, 27 May 2023 19:33:48 +0800 Subject: [PATCH] Create dedicated user agent for my application --- lib/asciidoctor/helpers.rb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lib/asciidoctor/helpers.rb b/lib/asciidoctor/helpers.rb index 2158b38..c5e1f99 100644 --- a/lib/asciidoctor/helpers.rb +++ b/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