From 25488d32336e05b69a41391cc7b5153478d3cc8a Mon Sep 17 00:00:00 2001 From: Adam Malczewski Date: Tue, 31 Mar 2026 00:52:33 +0900 Subject: init --- lib/dispatch/tool/files.rb | 12 ++++++++++++ lib/dispatch/tool/files/version.rb | 9 +++++++++ 2 files changed, 21 insertions(+) create mode 100644 lib/dispatch/tool/files.rb create mode 100644 lib/dispatch/tool/files/version.rb (limited to 'lib') diff --git a/lib/dispatch/tool/files.rb b/lib/dispatch/tool/files.rb new file mode 100644 index 0000000..b7418c3 --- /dev/null +++ b/lib/dispatch/tool/files.rb @@ -0,0 +1,12 @@ +# frozen_string_literal: true + +require_relative "files/version" + +module Dispatch + module Tool + module Files + class Error < StandardError; end + # Your code goes here... + end + end +end diff --git a/lib/dispatch/tool/files/version.rb b/lib/dispatch/tool/files/version.rb new file mode 100644 index 0000000..4d26d29 --- /dev/null +++ b/lib/dispatch/tool/files/version.rb @@ -0,0 +1,9 @@ +# frozen_string_literal: true + +module Dispatch + module Tool + module Files + VERSION = "0.1.0" + end + end +end -- cgit v1.2.3