renalware-core 2.0.151 → 2.0.152
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/helpers/renalware/application_helper.rb +2 -1
- data/lib/renalware/version_number.rb +1 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f8b5253271aa6a0c4ab1478ab6de2c12ea8e521801108b6c5ba1a735fc147b00
|
|
4
|
+
data.tar.gz: e006da5681751457133cb6cf6502cad223155aee5793828e9db3afae01598150
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 00b62e8e01cba9b6a629be10f860ec90e833c1410a354022f686350222391a5f8248c255461771a5c70c49e4a4e572c5bc2bb671cc89d3a17833ef4acdcedc84
|
|
7
|
+
data.tar.gz: 32bdc25680f6b9b166ecff7092e8a64088d9e64b56a67fa603e1c16e249cbb04868fc396c75f380e5ba57041a15705e5dfa5f4ece347de63c586bf99699c499b
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
require "inline_image"
|
|
4
4
|
require "git_commit_sha"
|
|
5
5
|
require "breadcrumb"
|
|
6
|
+
require "renalware/version_number"
|
|
6
7
|
|
|
7
8
|
module Renalware
|
|
8
9
|
module ApplicationHelper
|
|
@@ -113,7 +114,7 @@ module Renalware
|
|
|
113
114
|
end
|
|
114
115
|
|
|
115
116
|
def semantic_app_version
|
|
116
|
-
"#{Renalware::VERSION}+sha.#{GitCommitSha.current}"
|
|
117
|
+
"#{Renalware::VersionNumber::VERSION}+sha.#{GitCommitSha.current}"
|
|
117
118
|
end
|
|
118
119
|
end
|
|
119
120
|
end
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
module Renalware
|
|
4
|
-
VERSION = "2.0.151"
|
|
5
|
-
|
|
6
4
|
# To satisfy zeitwerk we have renamed this file version_number and make sure
|
|
7
5
|
# to creat that class even though its not used. If we don't do this zeitwerk
|
|
8
6
|
# complains that version.rb does export a constant called Version.
|
|
9
7
|
class VersionNumber
|
|
8
|
+
VERSION = "2.0.152"
|
|
10
9
|
end
|
|
11
10
|
end
|