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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8acf7450ce5e36ab1afd64bd9a7a56e62666bdd5737cb70bca5125ef4ea13439
4
- data.tar.gz: b2fc87101262329fa83b8df0791a9e2ec119b3a4e3339352232b9dd47c317647
3
+ metadata.gz: f01422f6b35f59e1d13323e7d9222b027865a3456d973a8eedc3e5190d414c4b
4
+ data.tar.gz: b55f21030e5e99f3c884e2b526f1f972507bd7b061775dfc5d3ee8799b1eff93
5
5
  SHA512:
6
- metadata.gz: a851cbbb52bace4822139aa72af3f0dfc3bc26548daf4fa9a2afee1ce51a684b959605d2eec5b76d32860c0ad1300d2d43cd402553807fd638464c4082df75c1
7
- data.tar.gz: 25f1955388f8915b6bc0b800a55fba116cc8b7ff498c9d6b8da7fbb84ad1a7b1a15181e9d71d8c984a8b83953f50d403fd0c387ccb6ec3429ad38c76dc27b9fa
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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module UART
4
- VERSION = "0.9.0"
4
+ VERSION = "1.0.0"
5
5
  end
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.9.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-10-13 00:00:00.000000000 Z
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/tree/main/mruby-serialport-uart
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/tree/main/mruby-serialport-uart
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.6.0
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. compliant with mruby, mruby/c common
65
+ summary: UART class library using serialport gem. Compliant with mruby, mruby/c common
64
66
  I/O API guidelines.
65
67
  test_files: []