dtrexp 1.0.0.alpha
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 +7 -0
- data/README.md +9 -0
- data/lib/dtrexp.rb +5 -0
- metadata +46 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: a532028cb4ef5cf8319a99ea5d5af8b2b1db9bc9e3c817faadf6c5bccca2da82
|
|
4
|
+
data.tar.gz: 79f6b683e5bdbfdd37bcfdf21b9ac47b8380f0510cba6d551f57a5f54f01abfe
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: a958cce5d1208430613d66ab17ea6222f56f503cce24be14f0ff4cea8560be2d366f045b7301b21d908508b4f118aa6d5a67bc87cd862c7465825030355d0a17
|
|
7
|
+
data.tar.gz: 47f27a6ac8142d9be848e06587837e67a5ba2cba68f5a319d5b18e4f14dff0c5c4674b9ff22b728782583cd46ff3304faf676f3dc93bc5521db43cf690dab4be
|
data/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# `dtrexp` (Ruby)
|
|
2
|
+
|
|
3
|
+
This gem name is held by the **[DTRExp](https://github.com/DTRExp/dtrexp)** project; the Ruby port is in development and will replace this placeholder.
|
|
4
|
+
|
|
5
|
+
DTRExp (read: "**DTR Expression**") is a compact string expression for date-time ranges and recurrence, evaluated by **coverage** rather than enumeration — what cron can't say and RRULE can't answer in O(1). The spec, the shared test vectors, and the existing implementations (TypeScript, Python, Go, Swift, Rust, Java, WASM) live at [DTRExp/dtrexp](https://github.com/DTRExp/dtrexp).
|
|
6
|
+
|
|
7
|
+
## License
|
|
8
|
+
|
|
9
|
+
MIT — © 2026, Onur Yıldırım.
|
data/lib/dtrexp.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: dtrexp
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0.alpha
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Onur Yıldırım
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: 'Holds the gem name for the DTRExp Ruby port, which is in development.
|
|
13
|
+
DTRExp is a compact string expression for date-time ranges and recurrence, evaluated
|
|
14
|
+
by coverage. Spec, test vectors and the existing implementations: https://github.com/DTRExp/dtrexp'
|
|
15
|
+
email: onur@cutepilot.com
|
|
16
|
+
executables: []
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files: []
|
|
19
|
+
files:
|
|
20
|
+
- README.md
|
|
21
|
+
- lib/dtrexp.rb
|
|
22
|
+
homepage: https://github.com/DTRExp/dtrexp
|
|
23
|
+
licenses:
|
|
24
|
+
- MIT
|
|
25
|
+
metadata:
|
|
26
|
+
source_code_uri: https://github.com/DTRExp/dtrexp
|
|
27
|
+
bug_tracker_uri: https://github.com/DTRExp/dtrexp/issues
|
|
28
|
+
rdoc_options: []
|
|
29
|
+
require_paths:
|
|
30
|
+
- lib
|
|
31
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
32
|
+
requirements:
|
|
33
|
+
- - ">="
|
|
34
|
+
- !ruby/object:Gem::Version
|
|
35
|
+
version: '3.0'
|
|
36
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
requirements: []
|
|
42
|
+
rubygems_version: 4.0.11
|
|
43
|
+
specification_version: 4
|
|
44
|
+
summary: DTRExp for Ruby — compact date-time range & recurrence expressions (port
|
|
45
|
+
in development).
|
|
46
|
+
test_files: []
|