fat_date 0.1.0 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e319d0c13b150c6d36c003eae0a64a38bc0f1c5b37321d934d7b40641655cf95
4
- data.tar.gz: d1c54d5d42a15b54e27801f0a68daf7a688c0925e87502947fddebcc0b2efba2
3
+ metadata.gz: 7c55c3198c63d7349b70ff6767b468715bb58e4a1ccaee2f4cfb66eb3705e283
4
+ data.tar.gz: 05eb54b8018ce864a7ea93335c1d4799b40f2b5a923b073b4ad621a429f967d5
5
5
  SHA512:
6
- metadata.gz: 986a61f5d321817430db1b26b1c8ac009137e13043d766376d958b9375850772441ee61c0227138e3a869b917ec2d38d4dcbf1ca228981a0b26cb4cf90796110
7
- data.tar.gz: ff2b2d927d576bc626408a577adec18d55d0501844af140096d60b19513f244239454b31f6a98cb2c27c3aa4bbc8d2cfd371a6f483a2b3c6db7773a5a46454af
6
+ metadata.gz: d61a8cee8251b0ff2d3d58b0a399eeed964422a322dd5e0e3cdf046a654858209b72dcd236ae9009063692c9bf9d858cda1d6f14a3fa4794f005ffdffe791542
7
+ data.tar.gz: ebc6b027ecc7401c2dc1a7207ac81daf27e4c5d93548c067b9c1bba6a0f2273b187cb096cb99e36e452ef6fea5b28dc23a20d1e2b533fe3b14a91a61c150f586
data/.rubocop.yml CHANGED
@@ -1,9 +1,3 @@
1
- inherit_from:
2
- - ~/.rubocop.yml
3
-
4
- AllCops:
5
- NewCops: enable
6
- TargetRubyVersion: 3.0
7
-
8
- Style/BitwisePredicate:
9
- Enabled: false
1
+ # Inherit the shared config from the rubocop-ddoherty gem (git-hosted on GitHub)
2
+ inherit_gem:
3
+ rubocop-ddoherty: 'config/default.yml'
data/.yardopts ADDED
@@ -0,0 +1,4 @@
1
+ --markup markdown
2
+ --output-dir doc
3
+ --readme README.md
4
+ lib/**/*.rb
data/CHANGELOG.org CHANGED
@@ -1,5 +1,10 @@
1
- ## [Unreleased]
2
1
 
3
- ## [0.1.0] - 2025-10-13
2
+ * Version 0.1.5
3
+ - Add Trump declared holidays for 2025
4
+ - Add date examples to README
5
+ * Version 0.1.4
6
+ - Add DateTime.iso to print time/zone components.
4
7
 
5
- - Initial release
8
+ * [0.1.3] - 2025-10-13
9
+ - Initial release splitting the Date methods out of fat_core into this
10
+ separate gem.