lib/runcom/identity.rb in runcom-6.0.1 vs lib/runcom/identity.rb in runcom-6.1.0

- old
+ new

@@ -1,22 +1,11 @@ # frozen_string_literal: true module Runcom # Gem identity information. module Identity - def self.name - "runcom" - end - - def self.label - "Runcom" - end - - def self.version - "6.0.1" - end - - def self.version_label - "#{label} #{version}" - end + NAME = "runcom" + LABEL = "Runcom" + VERSION = "6.1.0" + VERSION_LABEL = "#{LABEL} #{VERSION}" end end