Skip to content

Commit

Permalink
build: resolves Style/MutableConstant rubocop warning
Browse files Browse the repository at this point in the history
> Style/MutableConstant: Freeze mutable objects assigned to constants.
  • Loading branch information
jonrandahl committed Dec 9, 2024
1 parent 930be41 commit d1eaf00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/json_rails_logger/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ module JsonRailsLogger
MINOR = 0
PATCH = 0
SUFFIX = nil
VERSION = "#{MAJOR}.#{MINOR}.#{PATCH}#{SUFFIX && "-#{SUFFIX}"}"
VERSION = "#{MAJOR}.#{MINOR}.#{PATCH}#{SUFFIX && "-#{SUFFIX}"}".freeze
end

0 comments on commit d1eaf00

Please sign in to comment.