Skip to content

Commit

Permalink
Add ZTimestamp-GT package and gt group
Browse files Browse the repository at this point in the history
  • Loading branch information
svenvc committed Sep 22, 2023
1 parent 200f42d commit f6d93fe
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions repository/BaselineOfZTimestamp/BaselineOfZTimestamp.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ I am BaselineOfZTimestamp, a Metacello baseline to load ZTimestamp.
ZTimestamp, a Magnitude, represents a point in time, a combination of a date and a time.
It is an alternative for DateAndTime and TimeStamp.
It has second precision and lives in the UTC/GMT/Zulu timezone.
It has nanosecond precision and lives in the UTC/GMT/Zulu timezone.
It uses ISO/International conventions and protocols only.
ZTimestamp is more efficient: it uses half the memory of DateAndTime and is faster.
Expand All @@ -29,7 +29,9 @@ BaselineOfZTimestamp >> baseline: spec [
spec
package: 'ZTimestamp-Core';
package: 'ZTimestamp-Tests' with: [ spec requires: #('ZTimestamp-Core') ];
package: 'ZTimestamp-GT' with: [ spec requires: #('ZTimestamp-Core') ];
group: 'default' with: #('core' 'tests');
group: 'core' with: #('ZTimestamp-Core');
group: 'tests' with: #('ZTimestamp-Tests') ]
group: 'tests' with: #('ZTimestamp-Tests');
group: 'gt' with: #('ZTimestamp-GT') ]
]

0 comments on commit f6d93fe

Please sign in to comment.