initial commit

This commit is contained in:
onyx-and-iris
2022-10-22 22:30:40 +01:00
parent f85489e358
commit ae4956f625
20 changed files with 1581 additions and 0 deletions

25
lib/obsws/version.rb Normal file
View File

@@ -0,0 +1,25 @@
module OBSWS
module Version
module_function
def major
0
end
def minor
0
end
def patch
1
end
def to_a
[major, minor, patch]
end
def to_s
to_a.join(".")
end
end
end