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.
@@ -0,0 +1,4 @@
1
+ module Taskchampion
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
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: []