From 9c8ac7cf7df11773250ff160441c2f65be67cb47 Mon Sep 17 00:00:00 2001 From: tufusa Date: Wed, 14 Jan 2026 00:21:03 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=E3=82=B0=E3=83=AD=E3=83=BC=E3=83=90?= =?UTF-8?q?=E3=83=AB=E5=AE=9A=E6=95=B0=E3=82=92=E5=AE=9A=E7=BE=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/global.rbs | 4 ++++ test/global.rb | 10 ++++++++++ 2 files changed, 14 insertions(+) create mode 100644 core/global.rbs create mode 100644 test/global.rb diff --git a/core/global.rbs b/core/global.rbs new file mode 100644 index 0000000..f540751 --- /dev/null +++ b/core/global.rbs @@ -0,0 +1,4 @@ +RUBY_VERSION: string +MRUBY_VERSION: string +MRUBYC_VERSION: string +RUBY_ENGINE: string diff --git a/test/global.rb b/test/global.rb new file mode 100644 index 0000000..ec08ecb --- /dev/null +++ b/test/global.rb @@ -0,0 +1,10 @@ +# frozen_string_literal: true + +# rubocop:disable Lint/Void + +RUBY_VERSION +MRUBY_VERSION +MRUBYC_VERSION +RUBY_ENGINE + +# rubocop:enable all