halton 0.2.1 → 0.2.1.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/halton/Rakefile +8 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7aae4af6af8ca0e3913593d6562fdc53c62595d072555803908f20f3058e0f3a
|
|
4
|
+
data.tar.gz: bf500fc02cf93d2600d5b7196b89029dcf6866e61e96ff76eba179058e84b49f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9cacb8002e1418286806abb9fe6a9a3bdf01b4908ee6e90bf509706d659fdff3db1a3b8079f153ae968990312137ed9d5d94c1742c2ea031c0e8931df8ba73b0
|
|
7
|
+
data.tar.gz: f8f7b0edf5be22cbf60e186ed7d7db9aca74531909f9372a902306bfd925df15c988e34b385bb37c6c2327cce4fd0f624954736b93c9b99fe4cf2c05671c8cee
|
data/ext/halton/Rakefile
CHANGED
|
@@ -42,7 +42,13 @@ class RakeCargoHelper
|
|
|
42
42
|
|
|
43
43
|
def rust_name
|
|
44
44
|
prefix = "lib" unless Gem.win_platform?
|
|
45
|
-
suffix = RbConfig::CONFIG["target_os"] =~ /darwin/i
|
|
45
|
+
suffix = if RbConfig::CONFIG["target_os"] =~ /darwin/i
|
|
46
|
+
".dylib"
|
|
47
|
+
elsif Gem.win_platform?
|
|
48
|
+
".dll"
|
|
49
|
+
else
|
|
50
|
+
".so"
|
|
51
|
+
end
|
|
46
52
|
"#{prefix}#{gemname}#{suffix}"
|
|
47
53
|
end
|
|
48
54
|
|
|
@@ -76,7 +82,7 @@ end
|
|
|
76
82
|
|
|
77
83
|
desc "clean up release build artifacts"
|
|
78
84
|
task clean: [:cargo, :cd] do
|
|
79
|
-
|
|
85
|
+
sh "cargo clean --release"
|
|
80
86
|
end
|
|
81
87
|
|
|
82
88
|
desc "clean up build artifacts"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: halton
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.1
|
|
4
|
+
version: 0.2.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mat Sadler
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-05-
|
|
11
|
+
date: 2021-05-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -51,7 +51,7 @@ rdoc_options:
|
|
|
51
51
|
- "--charset"
|
|
52
52
|
- utf-8
|
|
53
53
|
- "--exclude"
|
|
54
|
-
- ext
|
|
54
|
+
- ext/
|
|
55
55
|
require_paths:
|
|
56
56
|
- lib
|
|
57
57
|
required_ruby_version: !ruby/object:Gem::Requirement
|