hx_ruby 0.3.0 → 0.3.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/ext/hx_ruby/Cargo.toml +4 -4
- data/lib/hx_ruby/version.rb +1 -1
- metadata +9 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ab5373d76b4283d90c11977635206792d6b6a05b04891e5158f2672631c64744
|
|
4
|
+
data.tar.gz: 8d0788735ade966abfb2e296ba5bd15453a84ad791df852a140b885e3aeb6961
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e4d8e407ab14eedb9dd4b7cc5845dec838e96b7f24471b61f4a42c581a9842462737a80a66fdfdcbbc6b11a11476fe4bf3f4aed1ac502aadeb806db98f20a51
|
|
7
|
+
data.tar.gz: 6faf31f58f0e446df76a2a1e97121d6c2494ed91ee46006df547d7a66cdb62fe8fdc43368e39ce17dd54d6d4759ef59805f5a296e7012571a40eabcdde16a573
|
data/ext/hx_ruby/Cargo.toml
CHANGED
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
# fails if it stops matching the workspace's.
|
|
11
11
|
[package]
|
|
12
12
|
name = "hx-ruby"
|
|
13
|
-
description = "
|
|
14
|
-
version = "0.3.
|
|
13
|
+
description = "Read Line 6 Helix and HX guitar preset files from Ruby"
|
|
14
|
+
version = "0.3.1"
|
|
15
15
|
edition = "2021"
|
|
16
16
|
license = "MIT"
|
|
17
17
|
repository = "https://github.com/crmne/tonepush"
|
|
@@ -35,7 +35,7 @@ crate-type = ["cdylib"]
|
|
|
35
35
|
# no sibling crates. A path would point at nothing there. The workspace root
|
|
36
36
|
# patches both back to the local sources, so building here still compiles what
|
|
37
37
|
# is checked out rather than what was last published.
|
|
38
|
-
hx-catalog = "0.3.
|
|
39
|
-
hx-proto = "0.3.
|
|
38
|
+
hx-catalog = "0.3.1"
|
|
39
|
+
hx-proto = "0.3.1"
|
|
40
40
|
magnus = "0.8"
|
|
41
41
|
serde_json = "1"
|
data/lib/hx_ruby/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hx_ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Carmine Paolino
|
|
@@ -24,9 +24,13 @@ dependencies:
|
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '0.9'
|
|
27
|
-
description:
|
|
28
|
-
|
|
29
|
-
|
|
27
|
+
description: 'A preset on a Line 6 Helix or HX Stomp is a saved guitar rig: an amp,
|
|
28
|
+
a speaker cabinet, the pedals in front of them, the order it all runs in, and where
|
|
29
|
+
every knob is set. Line 6 saves one as an .hlx file. This gem opens that file and
|
|
30
|
+
hands the rig back as ordinary Ruby - the blocks in order, what each one is, and
|
|
31
|
+
every setting - so you can read a preset, compare two, or index a library of them.
|
|
32
|
+
No hardware needed. The file is parsed by the same Rust code that talks to the pedal
|
|
33
|
+
itself, so it reads here exactly as it does there.'
|
|
30
34
|
email:
|
|
31
35
|
- carmine@paolino.me
|
|
32
36
|
executables: []
|
|
@@ -65,5 +69,5 @@ requirements: []
|
|
|
65
69
|
rubygems_version: 3.5.22
|
|
66
70
|
signing_key:
|
|
67
71
|
specification_version: 4
|
|
68
|
-
summary:
|
|
72
|
+
summary: Read Line 6 Helix and HX guitar preset files from Ruby
|
|
69
73
|
test_files: []
|