summaryrefslogtreecommitdiff
path: root/lib/singleton.rb
diff options
context:
space:
mode:
authorrm155 <[email protected]>2021-09-16 22:42:45 -0400
committerHiroshi SHIBATA <[email protected]>2024-10-01 17:59:42 +0900
commit2f53c9fc62e48d31101ab3072085a1ace336c938 (patch)
tree80b3cfff7cda6f9b3c41880e20cfdcfe3cd940e7 /lib/singleton.rb
parentd0c1eef51174701889767e1fed584d2d56d9f9c9 (diff)
[ruby/singleton] Clean VERSION freezing
https://github.com/ruby/singleton/commit/f31334a736
Diffstat (limited to 'lib/singleton.rb')
-rw-r--r--lib/singleton.rb3
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.