clp 0.1.3 → 0.2.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: ce8d28ee2e7e1772cfc1cdc8ea027e6946a791a3682ac4865f10f78cce765426
4
- data.tar.gz: 656c14297cc86e4baf08b33b64940530b3a83e2133a8e944c1c47d75487fae0f
3
+ metadata.gz: 111a3dce7f213d0d44bbd0aea0ed526079d1edb7c5e8d4e38ed4810a1b55ec8b
4
+ data.tar.gz: 3a00a882e572871f14bfecc5bb82d64e68b74250c1c22851435834460b0e6f60
5
5
  SHA512:
6
- metadata.gz: '086c1b6352fb07f1a425b955ccf95eebe4fbf7c4c7a2ba8736ca04811732dd0c9dde9f7233611d12ed71c9880b2646f6ffcc892b334231a33aee9e63f2b1ace7'
7
- data.tar.gz: 103720186f2a2a547fd9561a381ab9b4bb7b7c8c197a2f573ac6183e52506ecafb6d1513a61cd68862209d915a3dabc3e856d7cbceb3d9e4ca3a9c492ecc2e0c
6
+ metadata.gz: 6f463456c5513fb9118921c7af6cd14a36cc4fd8602f97e797a561c01bee815f8627760737a8edb6718a78275c83e280e88211954c04d48462cf56e6f6b4df93
7
+ data.tar.gz: f957a1db959e66b17d9456927c7e43fb8c742f755e7cb688f18bdb9573a7a7079df0920c3025263fd6a268283804a3375e95f2220cb10f68cea62d1986649fad
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## 0.2.1 (2024-12-29)
2
+
3
+ - Fixed shared library detection on Mac x86-64
4
+
5
+ ## 0.2.0 (2024-10-22)
6
+
7
+ - Dropped support for Ruby < 3.1
8
+
1
9
  ## 0.1.3 (2023-06-07)
2
10
 
3
11
  - Improved support for Mac ARM
data/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  Check out [Opt](https://github.com/ankane/opt) for a high-level interface
6
6
 
7
- [![Build Status](https://github.com/ankane/clp-ruby/workflows/build/badge.svg?branch=master)](https://github.com/ankane/clp-ruby/actions)
7
+ [![Build Status](https://github.com/ankane/clp-ruby/actions/workflows/build.yml/badge.svg)](https://github.com/ankane/clp-ruby/actions)
8
8
 
9
9
  ## Installation
10
10
 
data/lib/clp/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Clp
2
- VERSION = "0.1.3"
2
+ VERSION = "0.2.1"
3
3
  end
data/lib/clp.rb CHANGED
@@ -19,7 +19,7 @@ module Clp
19
19
  if RbConfig::CONFIG["host_cpu"] =~ /arm|aarch64/i
20
20
  ["libClp.dylib", "/opt/homebrew/lib/libClp.dylib"]
21
21
  else
22
- ["libClp.dylib"]
22
+ ["libClp.dylib", "/usr/local/lib/libClp.dylib"]
23
23
  end
24
24
  else
25
25
  # coinor-libclp-dev has libClp.so
metadata CHANGED
@@ -1,16 +1,28 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: clp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2023-06-08 00:00:00.000000000 Z
12
- dependencies: []
13
- description:
10
+ date: 2024-12-29 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: fiddle
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '0'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: '0'
14
26
  email: andrew@ankane.org
15
27
  executables: []
16
28
  extensions: []
@@ -27,7 +39,6 @@ homepage: https://github.com/ankane/clp-ruby
27
39
  licenses:
28
40
  - EPL-2.0
29
41
  metadata: {}
30
- post_install_message:
31
42
  rdoc_options: []
32
43
  require_paths:
33
44
  - lib
@@ -35,15 +46,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
35
46
  requirements:
36
47
  - - ">="
37
48
  - !ruby/object:Gem::Version
38
- version: '2.7'
49
+ version: '3.1'
39
50
  required_rubygems_version: !ruby/object:Gem::Requirement
40
51
  requirements:
41
52
  - - ">="
42
53
  - !ruby/object:Gem::Version
43
54
  version: '0'
44
55
  requirements: []
45
- rubygems_version: 3.4.10
46
- signing_key:
56
+ rubygems_version: 3.6.2
47
57
  specification_version: 4
48
58
  summary: Linear programming solver for Ruby
49
59
  test_files: []