From 5ae13c30c6e0be058fc2368774a03c63be12c5fd Mon Sep 17 00:00:00 2001 From: webbrain-one <295484252+webbrain-one@users.noreply.github.com> Date: Sat, 8 Aug 2026 14:51:56 +0300 Subject: [PATCH] Auto-require library files Require internal files in lib/toon-ruby.rb so the Toon constant is available immediately. This resolves the NameError and removes the need for manual require 'toon'. Closes #2 --- lib/toon-ruby.rb | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 lib/toon-ruby.rb diff --git a/lib/toon-ruby.rb b/lib/toon-ruby.rb new file mode 100644 index 0000000..8a56659 --- /dev/null +++ b/lib/toon-ruby.rb @@ -0,0 +1,3 @@ +# frozen_string_literal: true + +require_relative 'toon'