lxi_rb 0.10.4 → 0.10.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/lxi/functions.rb +0 -1
- data/lib/lxi/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f2fd402ad4dc4bd81b67efe59b6770d467109bf1e4b106589eb0e7803573ada6
|
4
|
+
data.tar.gz: 27d035da26e1cbdad9a690210cf30daad02997618b3bbbf3c92b52ae2fa7e00f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e4733f40c3c8c1147fe0ba417d3ca316eee6562e81c1a3dd8cd0b93ed800c3a402e0c1af018df5c5460a9f8509569af3b02eeef9a741b66cf9a5456b3d4ae017
|
7
|
+
data.tar.gz: e094f1304bda11d3e09557fc31b643387d0f1621b41bf0f302ed700fea8aedaedf8bae74fb13e2d7b5233c85cfc2ee7a3b97c7655b66b68e55fd16612b58be33
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,12 @@
|
|
4
4
|
All notable changes to this project will be documented in this file.
|
5
5
|
|
6
6
|
- - -
|
7
|
+
## [v0.10.5](https://github.com/robcarruthers/lxi_rb/compare/v0.10.4..v0.10.5) - 2023-06-29
|
8
|
+
#### Miscellaneous Tasks
|
9
|
+
- **(ffi)** Remove discover_if function - ([beeba82](https://github.com/robcarruthers/lxi_rb/commit/beeba8228094aa7cbb9c0ae0e0955a7e0b887885)) - [@robcarruthers](https://github.com/robcarruthers)
|
10
|
+
|
11
|
+
- - -
|
12
|
+
|
7
13
|
## [v0.10.4](https://github.com/robcarruthers/lxi_rb/compare/v0.10.3..v0.10.4) - 2023-06-28
|
8
14
|
#### Miscellaneous Tasks
|
9
15
|
- Add to LIBLXI search path - ([c6f329b](https://github.com/robcarruthers/lxi_rb/commit/c6f329b2a232b81dcd16bed201c493e42dc402ac)) - [@robcarruthers](https://github.com/robcarruthers)
|
data/lib/lxi/functions.rb
CHANGED
@@ -25,7 +25,6 @@ module Lxi
|
|
25
25
|
# Expose liblxi functions
|
26
26
|
attach_function :init, :lxi_init, [], :int
|
27
27
|
attach_function :discover, :lxi_discover, [LxiInfo.ptr, :int, :lxi_discover_type], :int
|
28
|
-
attach_function :discover_if, :lxi_discover_if, [LxiInfo.ptr, :string, :int, :lxi_discover_type], :int
|
29
28
|
attach_function :connect, :lxi_connect, %i[string int string int lxi_protocol_type], :int
|
30
29
|
attach_function :__send, :lxi_send, %i[int string int int], :int
|
31
30
|
attach_function :receive, :lxi_receive, %i[int pointer int int], :int
|
data/lib/lxi/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lxi_rb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.10.
|
4
|
+
version: 0.10.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rob Carruthers
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-06-
|
11
|
+
date: 2023-06-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ffi
|