Skip to content

Commit

Permalink
Document the Version module
Browse files Browse the repository at this point in the history
  • Loading branch information
markuspg committed Mar 19, 2021
1 parent 7bedfda commit 33a646d
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions lib/rutema/version.rb
@@ -1,9 +1,18 @@
module Rutema
#This module defines the version numbers for the library
##
# Version information of the rutema gem
module Version
##
# The major version of the rutema gem
MAJOR=2
##
# The minor version of the rutema gem
MINOR=0
##
# The tiny version of the rutema gem
TINY=0
##
# The version information of the rutema gem as a string
STRING=[ MAJOR, MINOR, TINY ].join( "." )
end
end
end

0 comments on commit 33a646d

Please sign in to comment.