Initial commit - Rebase of local and remote branches

This commit is contained in:
maddiebaka
2023-07-29 16:04:45 -04:00
parent 961f0149eb
commit 7e0640dc1c
16 changed files with 237 additions and 2 deletions

8
lib/skeksis.rb Normal file
View File

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

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

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