This commit is contained in:
2026-03-09 18:43:03 +03:00
parent 297a0d4ac0
commit 2278ccc1fe
13 changed files with 299 additions and 0 deletions

8
lib/my_gem.rb Normal file
View File

@@ -0,0 +1,8 @@
# frozen_string_literal: true
require_relative "my_gem/version"
module MyGem
class Error < StandardError; end
# Your code goes here...
end

5
lib/my_gem/version.rb Normal file
View File

@@ -0,0 +1,5 @@
# frozen_string_literal: true
module MyGem
VERSION = "0.1.0"
end