lib/pennyworth/identity.rb in pennyworth-9.0.0 vs lib/pennyworth/identity.rb in pennyworth-9.1.0
- old
+ new
@@ -1,22 +1,11 @@
# frozen_string_literal: true
module Pennyworth
# Gem identity information.
module Identity
- def self.name
- "pennyworth"
- end
-
- def self.label
- "Pennyworth"
- end
-
- def self.version
- "9.0.0"
- end
-
- def self.version_label
- "#{label} #{version}"
- end
+ NAME = "pennyworth"
+ LABEL = "Pennyworth"
+ VERSION = "9.1.0"
+ VERSION_LABEL = "#{LABEL} #{VERSION}"
end
end