Skip to content

Commit

Permalink
Fix RuboCop offenses for version.rb
Browse files Browse the repository at this point in the history
  • Loading branch information
markuspg committed Apr 3, 2021
1 parent c48e98b commit 07cc52e
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions lib/rutema/version.rb
@@ -1,9 +1,22 @@
# Copyright (c) 2007-2021 Vassilis Rizopoulos. All rights reserved.

# frozen_string_literal: true

module Rutema
#This module defines the version numbers for the library
##
# Version information of the rutema gem
module Version
MAJOR=2
MINOR=0
TINY=0
STRING=[ MAJOR, MINOR, TINY ].join( "." )
##
# 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 07cc52e

Please sign in to comment.