dubbletrack_remote 0.7.5 → 0.7.6
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 +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/dubbletrack_remote/reader/dbf.rb +0 -3
- data/lib/dubbletrack_remote/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b3f19a602957d1a970cd29d9c323c5ac127133b938eddd9f988c5d6b8ba9650a
|
|
4
|
+
data.tar.gz: d5d9af295c1882331ca6db41d92afac42661dacc02b7be8581a430f9b729a19d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9588dd28c7cc4fa3a777b6661890c406880262f4178d7b7e7492c36f7644b9f182631494661bf871010f6f7506fffddf37e29a6da4abcbcc493076356d1d0c4b
|
|
7
|
+
data.tar.gz: 233b9b24c04cb436c9ca9716e0f0ab2350fcabd4a9257b1dfd9350a0b88e2a0ad48a6d840416dc5d4569b31beffde3d89e2faf6e416cbb629110bebe34e681f6
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
dubbletrack remote changelog
|
|
2
2
|
|
|
3
|
+
## [0.7.6](https://github.com/dubbletrack/remote/compare/v0.7.5...v0.7.6) (2023-06-15)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* remove debug statements ([8756eef](https://github.com/dubbletrack/remote/commit/8756eef2ff9322eb35d225d42d1c15a505c9db44))
|
|
9
|
+
|
|
3
10
|
## [0.7.5](https://github.com/dubbletrack/remote/compare/v0.7.4...v0.7.5) (2023-06-15)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -43,8 +43,6 @@ module DubbletrackRemote
|
|
|
43
43
|
attrs[key] = attrs[key].mb_chars.tidy_bytes.to_s
|
|
44
44
|
end
|
|
45
45
|
|
|
46
|
-
debugger unless attrs["LENGTH"]
|
|
47
|
-
|
|
48
46
|
attrs
|
|
49
47
|
end
|
|
50
48
|
|
|
@@ -86,7 +84,6 @@ module DubbletrackRemote
|
|
|
86
84
|
date = (hash["DATE"] || "").strip
|
|
87
85
|
time = (hash["ACTSTART"] || "").strip
|
|
88
86
|
|
|
89
|
-
debugger if hash["TITLE"] == "PSA CSA Juneteenth 23"
|
|
90
87
|
duration = (hash["LENGTH"] || "0.0").to_f
|
|
91
88
|
automation_id = (hash["CUT"] || "").strip
|
|
92
89
|
automation_group = (hash["GROUP"] || "").strip
|