lxi_rb 0.6.4 → 0.7.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: cb8a9062bde53c4b69272f6c654288ae266d4868ebffab0eadfbebe72d3035be
4
- data.tar.gz: 0365fbb6d32f5ed3048f33ebaa8ea22b1f6e78eb192898d7fc6705d687ed049f
3
+ metadata.gz: 77313b2200b1ba847066182454dd2ac2ef36adc61a4c356f441e685f7e27c4da
4
+ data.tar.gz: a7ac41c3eb21734f6af0e3bbb42f83fce01a6323357a130b04042cf52b95fa46
5
5
  SHA512:
6
- metadata.gz: 461af9164bb219256efd49bd33f600e7a1c982d00bcb15406ab11c81dd0681cbce8894606e41bba19e3b2017f7e0075c44bce17d0eb5f5aa671b0909d799deb6
7
- data.tar.gz: dc4847327e5a7f60379e2986b30c03a831e75ffd75b057dce183925f879a80c926777c569bab24d42ae2a5c7d6f8ac38da7b4af4f048c036e5b7ff6b5a57100d
6
+ metadata.gz: '067999e1c48acb5037f78b7fba4d503762f93550a6ba76f392912f2b8adda565fb1a5a6e5ac6858809dda85bc4420c405d294ab296a31adc96f095e0e01dbaf4'
7
+ data.tar.gz: d8f1dda2cf1538daa27c09e338bafa33c05e16e399420e4c26b2936df10f878d732d0d6fd9bc030490c6c8e2de98a8922111d40b7bb8d350585fba1a3db67695
data/CHANGELOG.md CHANGED
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
8
  - - -
9
+ ## [v0.7.0](https://github.com/robcarruthers/lxi_rb/compare/v0.6.4..v0.7.0) - 2023-05-11
10
+ #### Tests
11
+ - **(Lxi)** Add Lxi module tests - ([627766f](https://github.com/robcarruthers/lxi_rb/commit/627766f3953486e54fc7bb67a3cb75701e1aa537)) - [@robcarruthers](https://github.com/robcarruthers)
12
+
13
+ - - -
14
+
9
15
  ## [v0.6.4](https://github.com/robcarruthers/lxi_rb/compare/v0.6.3..v0.6.4) - 2023-05-11
10
16
  #### Miscellaneous Chores
11
17
  - **(bundle)** Update - ([dff65bb](https://github.com/robcarruthers/lxi_rb/commit/dff65bb2ba3424d55c35dbfc92b7fd7c6ff92388)) - [@robcarruthers](https://github.com/robcarruthers)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- lxi_rb (0.6.3)
4
+ lxi_rb (0.6.4)
5
5
  ffi (~> 1.15)
6
6
 
7
7
  GEM
data/Rakefile CHANGED
@@ -5,7 +5,7 @@ require 'rake/testtask'
5
5
  Dir.glob('tasks/*.rake').each { |r| import r }
6
6
 
7
7
  Rake::TestTask.new(:test) do |t|
8
- t.libs << 'test'
8
+ t.libs << %w[test spec]
9
9
  t.libs << 'lib'
10
10
  t.test_files = FileList['test/**/test_*.rb', 'spec/**/*_spec.rb']
11
11
  end
data/lib/lxi/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Lxi
4
- VERSION = '0.6.4'
4
+ VERSION = '0.7.0'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lxi_rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.4
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rob Carruthers