lib/codekindly-utils.rb in codekindly-utils-0.0.5 vs lib/codekindly-utils.rb in codekindly-utils-0.0.6
- old
+ new
@@ -1,7 +1,10 @@
-require_relative "code_kindly/utils"
+# frozen_string_literal: true
+require_relative 'code_kindly/utils'
+
if Kernel.const_defined? :CK
- warn "`CK` is already defined as a constant, so you will need to use the full `CodeKindly::Utils` module name in this project."
+ warn '`CK` is already defined as a constant, so you will need to use' \
+ ' the full `CodeKindly::Utils` module name in this project.'
else
CK = CodeKindly::Utils
end