obsws-ruby/lib/obsws/version.rb
onyx-and-iris 2883fd42cc Socket class and driver methods
moved into Driver module

patch bump
2023-07-26 16:38:36 +01:00

28 lines
272 B
Ruby

module OBSWS
module Version
module_function
def major
0
end
def minor
3
end
def patch
1
end
def to_a
[major, minor, patch]
end
def to_s
to_a.join(".")
end
end
VERSION = Version.to_s
end