taskchampion-rb 0.2.0
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/.claude/settings.local.json +14 -0
- data/.rubocop.yml +21 -0
- data/CHANGELOG.md +15 -0
- data/Cargo.lock +3671 -0
- data/Cargo.toml +7 -0
- data/README.md +112 -0
- data/Rakefile +28 -0
- data/docs/API_REFERENCE.md +419 -0
- data/docs/THREAD_SAFETY.md +370 -0
- data/docs/breakthrough.md +246 -0
- data/docs/description.md +3 -0
- data/docs/phase_3_plan.md +482 -0
- data/docs/plan.md +612 -0
- data/example.md +465 -0
- data/examples/basic_usage.rb +278 -0
- data/examples/sync_workflow.rb +480 -0
- data/ext/taskchampion/Cargo.toml +20 -0
- data/ext/taskchampion/extconf.rb +6 -0
- data/ext/taskchampion/src/access_mode.rs +132 -0
- data/ext/taskchampion/src/annotation.rs +77 -0
- data/ext/taskchampion/src/dependency_map.rs +65 -0
- data/ext/taskchampion/src/error.rs +78 -0
- data/ext/taskchampion/src/lib.rs +41 -0
- data/ext/taskchampion/src/operation.rs +234 -0
- data/ext/taskchampion/src/operations.rs +180 -0
- data/ext/taskchampion/src/replica.rs +289 -0
- data/ext/taskchampion/src/status.rs +186 -0
- data/ext/taskchampion/src/tag.rs +77 -0
- data/ext/taskchampion/src/task.rs +388 -0
- data/ext/taskchampion/src/thread_check.rs +61 -0
- data/ext/taskchampion/src/util.rs +131 -0
- data/ext/taskchampion/src/working_set.rs +72 -0
- data/lib/taskchampion/version.rb +5 -0
- data/lib/taskchampion.rb +41 -0
- data/sig/taskchampion.rbs +4 -0
- data/taskchampion-0.2.0.gem +0 -0
- metadata +96 -0
Binary file
|
metadata
ADDED
@@ -0,0 +1,96 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: taskchampion-rb
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Tim Case
|
8
|
+
bindir: exe
|
9
|
+
cert_chain: []
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
|
+
dependencies:
|
12
|
+
- !ruby/object:Gem::Dependency
|
13
|
+
name: rb_sys
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - "~>"
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: 0.9.91
|
19
|
+
type: :runtime
|
20
|
+
prerelease: false
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
22
|
+
requirements:
|
23
|
+
- - "~>"
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: 0.9.91
|
26
|
+
description: TaskChampion is the task database that powers Taskwarrior. This gem provides
|
27
|
+
Ruby bindings to the Rust implementation.
|
28
|
+
email:
|
29
|
+
- tim@wingtask.com
|
30
|
+
executables: []
|
31
|
+
extensions:
|
32
|
+
- ext/taskchampion/extconf.rb
|
33
|
+
extra_rdoc_files: []
|
34
|
+
files:
|
35
|
+
- ".claude/settings.local.json"
|
36
|
+
- ".rubocop.yml"
|
37
|
+
- CHANGELOG.md
|
38
|
+
- Cargo.lock
|
39
|
+
- Cargo.toml
|
40
|
+
- README.md
|
41
|
+
- Rakefile
|
42
|
+
- docs/API_REFERENCE.md
|
43
|
+
- docs/THREAD_SAFETY.md
|
44
|
+
- docs/breakthrough.md
|
45
|
+
- docs/description.md
|
46
|
+
- docs/phase_3_plan.md
|
47
|
+
- docs/plan.md
|
48
|
+
- example.md
|
49
|
+
- examples/basic_usage.rb
|
50
|
+
- examples/sync_workflow.rb
|
51
|
+
- ext/taskchampion/Cargo.toml
|
52
|
+
- ext/taskchampion/extconf.rb
|
53
|
+
- ext/taskchampion/src/access_mode.rs
|
54
|
+
- ext/taskchampion/src/annotation.rs
|
55
|
+
- ext/taskchampion/src/dependency_map.rs
|
56
|
+
- ext/taskchampion/src/error.rs
|
57
|
+
- ext/taskchampion/src/lib.rs
|
58
|
+
- ext/taskchampion/src/operation.rs
|
59
|
+
- ext/taskchampion/src/operations.rs
|
60
|
+
- ext/taskchampion/src/replica.rs
|
61
|
+
- ext/taskchampion/src/status.rs
|
62
|
+
- ext/taskchampion/src/tag.rs
|
63
|
+
- ext/taskchampion/src/task.rs
|
64
|
+
- ext/taskchampion/src/thread_check.rs
|
65
|
+
- ext/taskchampion/src/util.rs
|
66
|
+
- ext/taskchampion/src/working_set.rs
|
67
|
+
- lib/taskchampion.rb
|
68
|
+
- lib/taskchampion/version.rb
|
69
|
+
- sig/taskchampion.rbs
|
70
|
+
- taskchampion-0.2.0.gem
|
71
|
+
homepage: https://github.com/timcase/taskchampion-rb
|
72
|
+
licenses:
|
73
|
+
- MIT
|
74
|
+
metadata:
|
75
|
+
allowed_push_host: https://rubygems.org
|
76
|
+
homepage_uri: https://github.com/timcase/taskchampion-rb
|
77
|
+
source_code_uri: https://github.com/timcase/taskchampion-rb
|
78
|
+
changelog_uri: https://github.com/timcase/taskchampion-rb/blob/main/CHANGELOG.md
|
79
|
+
rdoc_options: []
|
80
|
+
require_paths:
|
81
|
+
- lib
|
82
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
83
|
+
requirements:
|
84
|
+
- - ">="
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: 3.0.0
|
87
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
88
|
+
requirements:
|
89
|
+
- - ">="
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: 3.3.11
|
92
|
+
requirements: []
|
93
|
+
rubygems_version: 3.6.9
|
94
|
+
specification_version: 4
|
95
|
+
summary: Ruby bindings for TaskChampion
|
96
|
+
test_files: []
|