rename the gem to ruby_algebra

This commit is contained in:
2026-03-09 20:42:08 +03:00
parent 2278ccc1fe
commit a2b1aff4d9
6 changed files with 16 additions and 18 deletions

View File

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

6
lib/ruby_algebra.rb Normal file
View File

@@ -0,0 +1,6 @@
# frozen_string_literal: true
require_relative "ruby_algebra/version"
module RubyAlgebra
end

View File

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