diff options
author | rm155 <[email protected]> | 2021-09-16 22:42:45 -0400 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2024-10-01 17:59:42 +0900 |
commit | 2f53c9fc62e48d31101ab3072085a1ace336c938 (patch) | |
tree | 80b3cfff7cda6f9b3c41880e20cfdcfe3cd940e7 /lib/singleton.rb | |
parent | d0c1eef51174701889767e1fed584d2d56d9f9c9 (diff) |
[ruby/singleton] Clean VERSION freezing
https://github.com/ruby/singleton/commit/f31334a736
Diffstat (limited to 'lib/singleton.rb')
-rw-r--r-- | lib/singleton.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/singleton.rb b/lib/singleton.rb index 924cbf1ae8..0120f05957 100644 --- a/lib/singleton.rb +++ b/lib/singleton.rb @@ -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. |