gslr 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: a7af3797056273914ab4704feeadb1d5262641bcf45cc007c0935c6de24b2dc0
4
- data.tar.gz: 2845afb6e1a0687f577a760299a9c52e6116f45b1d555eab436d197a546ed19b
3
+ metadata.gz: ed25291c8db448474f899977ed387aee68777c7295f7a2c9a800d20f9080e0aa
4
+ data.tar.gz: 8ecd7a62b1908c697b3c5b49ece4fec68a2d518e4d4e6cdc65e342f7b3c5f93f
5
5
  SHA512:
6
- metadata.gz: 0bedd4c0168039ce898f5129d2063f21541cc0e753e797e4852aa4d8dda523d412309d0e2109f7eff22c44906a0c6ba20687b5e63844e2f0bc36ef71c4d80fd5
7
- data.tar.gz: 88ea46e968b048b0a90dbd766c4db0408c2fe48e86d05f26676d755bf13b7c93f9af2b6c7cc39f0fbdcbab45dfd92770ba337eab1a31c373887d31faca1964ee
6
+ metadata.gz: d0b36089807185b51a4620fb4950b1779dd134d6d88d7936c74623f01a266ed064e5b742dec1d1274732badb61a2770cd20c16e5fe26c74dd6494fb4842fa38c
7
+ data.tar.gz: fec15c0e8bbf262214287cf25a7409ba5401dd7b8bd7332307590052be218a75f45b49a4465f3cc55aaf97231d218cc0e92c4106f691039a73441df530e43409
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.3.1 (2024-12-29)
2
+
3
+ - Fixed GSL detection on Mac x86-64
4
+
1
5
  ## 0.3.0 (2024-10-22)
2
6
 
3
7
  - Dropped support for Ruby < 3.1
data/lib/gslr/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module GSLR
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1"
3
3
  end
data/lib/gslr.rb CHANGED
@@ -22,8 +22,8 @@ module GSLR
22
22
  self.cblas_lib = ["libgslcblas.dylib", "/opt/homebrew/lib/libgslcblas.dylib"]
23
23
  ["libgsl.dylib", "/opt/homebrew/lib/libgsl.dylib"]
24
24
  else
25
- self.cblas_lib = ["libgslcblas.dylib"]
26
- ["libgsl.dylib"]
25
+ self.cblas_lib = ["libgslcblas.dylib", "/usr/local/lib/libgslcblas.dylib"]
26
+ ["libgsl.dylib", "/usr/local/lib/libgsl.dylib"]
27
27
  end
28
28
  else
29
29
  self.cblas_lib = ["libgslcblas.so"]
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gslr
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
  - Andrew Kane
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-10-23 00:00:00.000000000 Z
10
+ date: 2024-12-29 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: fiddle
@@ -24,7 +23,6 @@ dependencies:
24
23
  - - ">="
25
24
  - !ruby/object:Gem::Version
26
25
  version: '0'
27
- description:
28
26
  email: andrew@ankane.org
29
27
  executables: []
30
28
  extensions: []
@@ -44,7 +42,6 @@ homepage: https://github.com/ankane/gslr
44
42
  licenses:
45
43
  - GPL-3.0-or-later
46
44
  metadata: {}
47
- post_install_message:
48
45
  rdoc_options: []
49
46
  require_paths:
50
47
  - lib
@@ -59,8 +56,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
59
56
  - !ruby/object:Gem::Version
60
57
  version: '0'
61
58
  requirements: []
62
- rubygems_version: 3.5.16
63
- signing_key:
59
+ rubygems_version: 3.6.2
64
60
  specification_version: 4
65
61
  summary: High performance linear regression for Ruby, powered by GSL
66
62
  test_files: []