diff --git a/hbsdctl.rb.gemspec b/hbsdctl.rb.gemspec index 2c7f84e..aa9c36f 100644 --- a/hbsdctl.rb.gemspec +++ b/hbsdctl.rb.gemspec @@ -1,9 +1,10 @@ +require_relative "lib/bsd/control/version" Gem::Specification.new do |gem| gem.name = "hbsdctl.rb" gem.authors = ["0x1eef"] gem.email = ["0x1eef@protonmail.com"] gem.homepage = "https://git.hardenedbsd.org/0x1eef/hbsdctl.rb#readme" - gem.version = "0.1.0" + gem.version = BSD::Control::VERSION gem.licenses = ["0BSD"] gem.files = `git ls-files`.split($/) gem.require_paths = ["lib"] diff --git a/lib/bsd/control/version.rb b/lib/bsd/control/version.rb new file mode 100644 index 0000000..dc0f581 --- /dev/null +++ b/lib/bsd/control/version.rb @@ -0,0 +1,5 @@ +module BSD + module Control + VERSION = "0.1.0" + end +end