[ruby/singleton] Clean VERSION freezing

https://github.com/ruby/singleton/commit/f31334a736
This commit is contained in:
rm155 2021-09-16 22:42:45 -04:00 committed by Hiroshi SHIBATA
parent d0c1eef511
commit 2f53c9fc62
No known key found for this signature in database
GPG Key ID: F9CF13417264FAC2

View File

@ -1,4 +1,4 @@
# frozen_string_literal: false
# frozen_string_literal: true
# The Singleton module implements the Singleton pattern.
#
@ -93,7 +93,6 @@
#
module Singleton
VERSION = "0.2.0"
VERSION.freeze
module SingletonInstanceMethods
# Raises a TypeError to prevent cloning.