From f31334a736f644f53314e414b1f0fae4b6ca53b9 Mon Sep 17 00:00:00 2001 From: rm155 Date: Thu, 16 Sep 2021 22:42:45 -0400 Subject: [PATCH] Clean VERSION freezing --- lib/singleton.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/singleton.rb b/lib/singleton.rb index 924cbf1..0120f05 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.