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
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: '029205bd9244f841d99e2913b09dd0e631ef11c28e3ddbc4745d54c9731248ad'
|
4
|
+
data.tar.gz: 45c862f0b82dba0187025aaee04c85be748aa9f24a17f28428dbd9ff9827b710
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 9379b9c99bb21c7a23beeda1f92756f31f22543b05600e11302650575063e52fe23c99a49b8a51c875f602e4d88f022aaf11681232a2a66fe1201f44116d3055
|
7
|
+
data.tar.gz: 0745ae9e0c8350b27318c7bd741d4dfaf92921c714b396f2bfeb3c277a8d89260aa53fe2a99c63b036e65e36e9e365398ffd0729ca5bc64b209266f80ba49e0f
|
@@ -0,0 +1,14 @@
|
|
1
|
+
{
|
2
|
+
"permissions": {
|
3
|
+
"allow": [
|
4
|
+
"Bash(bundle exec rake:*)",
|
5
|
+
"mcp__zen__chat",
|
6
|
+
"mcp__zen__thinkdeep",
|
7
|
+
"WebFetch(domain:github.com)",
|
8
|
+
"WebFetch(domain:docs.taskwarrior.org)",
|
9
|
+
"Bash(chmod:*)",
|
10
|
+
"Bash(gem build:*)"
|
11
|
+
],
|
12
|
+
"deny": []
|
13
|
+
}
|
14
|
+
}
|
data/.rubocop.yml
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# Omakase Ruby styling for Rails
|
2
|
+
inherit_gem: { rubocop-rails-omakase: rubocop.yml }
|
3
|
+
|
4
|
+
# Use whatever you want for string literals
|
5
|
+
Style/StringLiterals:
|
6
|
+
Enabled: false
|
7
|
+
EnforcedStyle: double_quotes
|
8
|
+
Include:
|
9
|
+
- "app/**/*"
|
10
|
+
- "config/**/*"
|
11
|
+
- "lib/**/*"
|
12
|
+
- "test/**/*"
|
13
|
+
- "Gemfile"
|
14
|
+
Layout/SpaceInLambdaLiteral:
|
15
|
+
Enabled: false
|
16
|
+
Layout/SpaceInsideHashLiteralBraces:
|
17
|
+
Enabled: false
|
18
|
+
Layout/SpaceInsideArrayLiteralBrackets:
|
19
|
+
Enabled: false
|
20
|
+
Style/PercentLiteralDelimiters:
|
21
|
+
Enabled: false
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
## [Unreleased]
|
2
|
+
|
3
|
+
## [0.2.0] - 2025-08-11
|
4
|
+
|
5
|
+
- Enhanced error handling with contextual messages
|
6
|
+
- Added comprehensive parameter validation checks
|
7
|
+
- Added Ruby-style setter methods for naming polish
|
8
|
+
- Enhanced Operation class with introspection API
|
9
|
+
- Complete Replica class API with sync methods
|
10
|
+
- Improved thread safety implementation
|
11
|
+
- Comprehensive test suite with error handling coverage
|
12
|
+
|
13
|
+
## [0.1.0] - 2025-07-29
|
14
|
+
|
15
|
+
- Initial release
|