labimotion 2.3.0.rc5 → 2.3.0.rc6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 57f6db758edf09de9105830d7a9f9cfda1270ac36bb6ee4351da8ab65b2ea2dc
4
- data.tar.gz: 0e220ffc2a76645f8e82536cd592d7ee9eecd28e54073b408a602da019839e9f
3
+ metadata.gz: 7f03974c2c4a8918a74bd6ff6ae9eb077e0ad38507f716b5fc952792d12bb3d3
4
+ data.tar.gz: f00fb94a263cb13172fea15710f616fa851ccfc233c576ede27a5b8cf23a9923
5
5
  SHA512:
6
- metadata.gz: f3f5ca1afdb69edbbf36f09834a04843d72d9b964db836719991a5d8b1acb10036cf4470f4ca1810bac6b629bc6908dc2ed5054127216ed9d6109b01d205ab07
7
- data.tar.gz: cf72bfa7a774ef98e1474d5a4e3914304f940105137f18f05adb4b5675afdeab668e305386bda9ce1b842b2083005fc622c210d27c60b1005cfcba90c1eb2617
6
+ metadata.gz: ca257450ec28948d51ea014423c9caed27df2d10d187d7b7eab45d92a34fa9c2e66ede32fe27badcc9aab58f8dea92c0fe6691cf65cb2032982b6604829a7c52
7
+ data.tar.gz: ed06f0529322828dbf24473e0d3a7775800c8d960253491af35f0525c0586358e642faf05d71e8a36406cd8da3244304d8cde1e652a659f809d4537a15f8413d
@@ -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('%Y-%m-%d %H:%M:%S %Z') : nil
16
+ datetime.present? ? datetime.strftime(ELN_TIMESTAMP_FORMAT) : nil
13
17
  end
14
18
  end
15
19
  end
@@ -1,6 +1,7 @@
1
1
  module Labimotion
2
2
  ## Converter State
3
3
  class Prop
4
+ CONVERTER_FIELD_UINT_PREFIX = '___unit___'.freeze
4
5
  LAYERS = 'layers'.freeze
5
6
  FIELDS = 'fields'.freeze
6
7
  SUBFIELDS = 'sub_fields'.freeze
@@ -2,5 +2,5 @@
2
2
 
3
3
  ## Labimotion Version
4
4
  module Labimotion
5
- VERSION = '2.3.0.rc5'
5
+ VERSION = '2.3.0.rc6'
6
6
  end
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.3.0.rc5
4
+ version: 2.3.0.rc6
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-10 00:00:00.000000000 Z
12
+ date: 2026-07-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: caxlsx