mruby-serialport-uart 0.9.0 → 1.0.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 +4 -4
- data/README.md +3 -1
- data/lib/mruby/uart/serialport/version.rb +1 -1
- metadata +8 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f01422f6b35f59e1d13323e7d9222b027865a3456d973a8eedc3e5190d414c4b
|
4
|
+
data.tar.gz: b55f21030e5e99f3c884e2b526f1f972507bd7b061775dfc5d3ee8799b1eff93
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7cd4b6bc3da22574fa00b304bfd89fcd05bb66e2ea2f412291079b0136e48b9b33417b16c3588d371346bc6078350691e9f1c50c712d11e58d8cdad6bde82226
|
7
|
+
data.tar.gz: b58435cdeb2ce6f9d9cb72c952f0aca98c40507139d7ce30cbbe435b4b97461cd983268b32cda8a8d0f8d1c728c81ae4981d273ee6e75c4884826a5d81932bd8
|
data/README.md
CHANGED
@@ -5,7 +5,9 @@
|
|
5
5
|
This is an implementation of the UART class library.
|
6
6
|
Follows [mruby, mruby/c common I/O API guidelines.](https://github.com/mruby/microcontroller-peripheral-interface-guide)
|
7
7
|
|
8
|
-
This is a wrapper for the [serialport gem](https://rubygems.org/gems/serialport).
|
8
|
+
This is a wrapper for the [serialport gem](https://rubygems.org/gems/serialport).
|
9
|
+
Works well on 32-bit and 64-bit OS.
|
10
|
+
|
9
11
|
|
10
12
|
## Installation
|
11
13
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mruby-serialport-uart
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- HirohitoHigashi
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-12-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: serialport
|
@@ -37,11 +37,13 @@ files:
|
|
37
37
|
- lib/mruby/uart/serialport.rb
|
38
38
|
- lib/mruby/uart/serialport/uart_serialport.rb
|
39
39
|
- lib/mruby/uart/serialport/version.rb
|
40
|
-
homepage: https://github.com/HirohitoHigashi/mruby-mio/
|
40
|
+
homepage: https://github.com/HirohitoHigashi/mruby-mio/
|
41
41
|
licenses:
|
42
42
|
- BSD 3-CLAUSE
|
43
43
|
metadata:
|
44
|
-
homepage_uri: https://github.com/HirohitoHigashi/mruby-mio/
|
44
|
+
homepage_uri: https://github.com/HirohitoHigashi/mruby-mio/
|
45
|
+
source_code_uri: https://github.com/HirohitoHigashi/mruby-mio/tree/v1.0.0/mruby-serialport-uart
|
46
|
+
documentation_uri: https://www.rubydoc.info/gems/mruby-serialport-uart/1.0.0/
|
45
47
|
post_install_message:
|
46
48
|
rdoc_options: []
|
47
49
|
require_paths:
|
@@ -50,7 +52,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
50
52
|
requirements:
|
51
53
|
- - ">="
|
52
54
|
- !ruby/object:Gem::Version
|
53
|
-
version: 2.
|
55
|
+
version: 2.5.0
|
54
56
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
55
57
|
requirements:
|
56
58
|
- - ">="
|
@@ -60,6 +62,6 @@ requirements: []
|
|
60
62
|
rubygems_version: 3.4.13
|
61
63
|
signing_key:
|
62
64
|
specification_version: 4
|
63
|
-
summary: UART class library using serialport gem.
|
65
|
+
summary: UART class library using serialport gem. Compliant with mruby, mruby/c common
|
64
66
|
I/O API guidelines.
|
65
67
|
test_files: []
|