dredger-iot 0.1.0 → 0.1.1
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 +17 -1
- data/README.md +1 -1
- data/lib/dredger/iot/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 77401daa8434854747d298a3d6e92faf903ef6157d29c11c449e048e664fbdce
|
|
4
|
+
data.tar.gz: fe634bdf185a0787963ca1f45d60db33accf330f2ac72753f15338732aae7f57
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a517bb67ee51d067d8581552928998e111989f92914f147d36d26f4a6d3f5b555286fc0f831039eea19242ce36423f8c2951bbba08c12b72daa46be10ba25eab
|
|
7
|
+
data.tar.gz: 50fde0ea268c0259486098223a530659646c6b9a0586d403a777ba0cf1053e30c7794f11bfa61939fd3d8f964bd7935e81ecded9d211e50187dd50ce7f4630d7
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.1] - 2025-10-04
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Update CI workflows to use upload-artifact@v4 (v3 deprecated)
|
|
14
|
+
- Exclude vendor directory from RuboCop to prevent scanning bundled gems
|
|
15
|
+
- Fix Gemfile.lock synchronization with semantic FFI versioning
|
|
16
|
+
- Resolve all RuboCop violations with auto-corrections
|
|
17
|
+
- Add sensor name transforms for DS18B20, BMP180, MCP9808
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
- Drop Ruby 3.1 support, require Ruby >= 3.2
|
|
21
|
+
- Update RuboCop target Ruby version to 3.2
|
|
22
|
+
- Increase MethodLength cop limit to 20 for scheduler methods
|
|
23
|
+
- Disable metric cops for provider implementations and examples
|
|
24
|
+
|
|
10
25
|
## [0.1.0] - 2025-10-03
|
|
11
26
|
|
|
12
27
|
### Added
|
|
@@ -29,5 +44,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
29
44
|
- RuboCop configuration and compliance
|
|
30
45
|
- Comprehensive documentation and usage examples
|
|
31
46
|
|
|
32
|
-
[Unreleased]: https://github.com/TheMadBotterINC/dredger-iot/compare/v0.1.
|
|
47
|
+
[Unreleased]: https://github.com/TheMadBotterINC/dredger-iot/compare/v0.1.1...HEAD
|
|
48
|
+
[0.1.1]: https://github.com/TheMadBotterINC/dredger-iot/compare/v0.1.0...v0.1.1
|
|
33
49
|
[0.1.0]: https://github.com/TheMadBotterINC/dredger-iot/releases/tag/v0.1.0
|
data/README.md
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
[](https://github.com/TheMadBotterINC/dredger-iot/actions/workflows/ci.yml)
|
|
23
23
|
[](https://badge.fury.io/rb/dredger-iot)
|
|
24
24
|
[](https://opensource.org/licenses/MIT)
|
|
25
|
-
[](https://www.ruby-lang.org/)
|
|
26
26
|
|
|
27
27
|
A small, FOSS Ruby library for hardware access on embedded Linux (Beaglebone Black, etc.).
|
|
28
28
|
|
data/lib/dredger/iot/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dredger-iot
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- The Mad Botter INC
|
|
@@ -86,7 +86,7 @@ post_install_message: "\n══════════════════
|
|
|
86
86
|
\ \\___________________// | \n |_____________________________|
|
|
87
87
|
\ \n ~~~ \\ // ~~~ \n
|
|
88
88
|
\ \\_______________// \n═══════════════════════════════════════════════════════════════════\n
|
|
89
|
-
\ Hardware Integration for Embedded Linux v0.1.
|
|
89
|
+
\ Hardware Integration for Embedded Linux v0.1.1\n═══════════════════════════════════════════════════════════════════\n\n\U0001F389
|
|
90
90
|
Thanks for installing!\n\n\U0001F4DA Hardware Setup (kernel modules & permissions):\n
|
|
91
91
|
\ https://github.com/TheMadBotterINC/dredger-iot#hardware-setup\n\n\U0001F680 Quick
|
|
92
92
|
Start:\n require 'dredger/iot'\n gpio = Dredger::IoT::Bus::Auto.gpio\n i2c
|
|
@@ -99,7 +99,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
99
99
|
requirements:
|
|
100
100
|
- - ">="
|
|
101
101
|
- !ruby/object:Gem::Version
|
|
102
|
-
version: '3.
|
|
102
|
+
version: '3.2'
|
|
103
103
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
104
104
|
requirements:
|
|
105
105
|
- - ">="
|