obsws-ruby/lib/obsws/version.rb
onyx-and-iris 4c4746fe8a now using String refinement
Events Director module renamed

patch bump
2023-08-29 22:55:11 +01:00

26 lines
246 B
Ruby

module OBSWS
module VERSION
module_function
def major
0
end
def minor
6
end
def patch
2
end
def to_a
[major, minor, patch]
end
def to_s
to_a.join(".")
end
end
end