labimotion 2.4.0.rc2 → 2.4.0.rc3
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/lib/labimotion/entities/application_entity.rb +5 -1
- data/lib/labimotion/utils/prop.rb +1 -0
- data/lib/labimotion/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2c40bb5efbdc756295f36c7a5a9b424639565f38912c7ef200151d124152fd30
|
|
4
|
+
data.tar.gz: 935efaab787fc3c8d1c0aee4d11ca8206def39e244249ba6c9161b3e16088d89
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e01cbe9c498ea9bc82515c4aea85fa50e131b523fd3564d91f5f962d5b9fdd1175b197f5b0663f6e38c98e7c8d5ab5afe14d48f63c764c0b1d9ee22423dc1e9e
|
|
7
|
+
data.tar.gz: d08a91299b3c202684bfe1ab222bfe1d5765c41664c731285848ba6b03489031ea7824b50f96cc1059e8c207eb1de488a06e745f0d77e51ceda318afedf941ef
|
|
@@ -8,8 +8,12 @@ module Labimotion
|
|
|
8
8
|
# Common condition for fields that should not be displayed in list views
|
|
9
9
|
DISPLAYED_IN_LIST_CONDITION = { unless: :displayed_in_list }.freeze
|
|
10
10
|
|
|
11
|
+
# ISO 8601. A zone *name* (strftime '%Z', e.g. "UTC") is not a valid ISO zone designator, so
|
|
12
|
+
# clients parsing it with moment.js fall back to `new Date()` — engine-specific behaviour.
|
|
13
|
+
ELN_TIMESTAMP_FORMAT = '%Y-%m-%dT%H:%M:%S%z'
|
|
14
|
+
|
|
11
15
|
format_with(:eln_timestamp) do |datetime|
|
|
12
|
-
datetime.present? ? datetime.strftime(
|
|
16
|
+
datetime.present? ? datetime.strftime(ELN_TIMESTAMP_FORMAT) : nil
|
|
13
17
|
end
|
|
14
18
|
end
|
|
15
19
|
end
|
data/lib/labimotion/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: labimotion
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.4.0.
|
|
4
|
+
version: 2.4.0.rc3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chia-Lin Lin
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2026-07-
|
|
12
|
+
date: 2026-07-24 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: caxlsx
|