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 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