diff options
| author | Adam Malczewski <[email protected]> | 2026-03-31 00:52:33 +0900 |
|---|---|---|
| committer | Adam Malczewski <[email protected]> | 2026-03-31 00:52:33 +0900 |
| commit | 25488d32336e05b69a41391cc7b5153478d3cc8a (patch) | |
| tree | 3570cccc44766d7268457adeff79f16f855c0d9f /lib | |
| download | dispatch-tool-files-25488d32336e05b69a41391cc7b5153478d3cc8a.tar.gz dispatch-tool-files-25488d32336e05b69a41391cc7b5153478d3cc8a.zip | |
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/dispatch/tool/files.rb | 12 | ||||
| -rw-r--r-- | lib/dispatch/tool/files/version.rb | 9 |
2 files changed, 21 insertions, 0 deletions
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 |
