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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ed966ca9ef6f53c6fc8eb54f403e685ccce968c18857095d48bc46c0fb8eda14
4
- data.tar.gz: f7cc0f292ffba4285a9612fd2d8e14d7dd78290ce18998475306b20874a5af57
3
+ metadata.gz: ab5373d76b4283d90c11977635206792d6b6a05b04891e5158f2672631c64744
4
+ data.tar.gz: 8d0788735ade966abfb2e296ba5bd15453a84ad791df852a140b885e3aeb6961
5
5
  SHA512:
6
- metadata.gz: 4418e948a6106c092c8d40ac27bac2b427e4835f677ac4593825f2ef8aa091cef139a71d325c977617540553b984adff1f98c67ffecc7d6672569dab1b7bd2f5
7
- data.tar.gz: fae787afd40a83fd3f7e35342148d84ca3426807767f2059e7b2495fe913ec24b48021893f2a4bf55949e3eb9750c86e2c125773bcac6adecf307b1cf1fe39f4
6
+ metadata.gz: 6e4d8e407ab14eedb9dd4b7cc5845dec838e96b7f24471b61f4a42c581a9842462737a80a66fdfdcbbc6b11a11476fe4bf3f4aed1ac502aadeb806db98f20a51
7
+ data.tar.gz: 6faf31f58f0e446df76a2a1e97121d6c2494ed91ee46006df547d7a66cdb62fe8fdc43368e39ce17dd54d6d4759ef59805f5a296e7012571a40eabcdde16a573
@@ -10,8 +10,8 @@
10
10
  # fails if it stops matching the workspace's.
11
11
  [package]
12
12
  name = "hx-ruby"
13
- description = "Ruby bindings over hx-catalog's preset inspector, so the tone browser reads .hlx files with the same code the desktop uses"
14
- version = "0.3.0"
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.0"
39
- hx-proto = "0.3.0"
38
+ hx-catalog = "0.3.1"
39
+ hx-proto = "0.3.1"
40
40
  magnus = "0.8"
41
41
  serde_json = "1"
@@ -3,5 +3,5 @@
3
3
  module HxRuby
4
4
  # Kept in step with the Rust workspace version so the gem and the crate it
5
5
  # wraps move together.
6
- VERSION = "0.3.0"
6
+ VERSION = "0.3.1"
7
7
  end
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.0
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: Ruby bindings over hx-catalog's preset inspector, so the tone browser
28
- reads .hlx files with the same Rust code the desktop uses instead of reimplementing
29
- parsing in Ruby.
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: Parse Line 6 .hlx presets into tone facts with the TonePush Rust catalog
72
+ summary: Read Line 6 Helix and HX guitar preset files from Ruby
69
73
  test_files: []