rcee_precompiled 0.5.1-arm-linux-gnu → 0.6.0-arm-linux-gnu
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/Gemfile +1 -1
- data/Rakefile +4 -5
- data/lib/rcee/precompiled/3.3/precompiled.so +0 -0
- data/lib/rcee/precompiled/3.4/precompiled.so +0 -0
- data/lib/rcee/precompiled/version.rb +1 -1
- metadata +6 -6
- data/lib/rcee/precompiled/3.0/precompiled.so +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9e8c08a4e64abfc4d2f574ea27d9ce8a0326db4f206e3f13d3526d07538a0b52
|
4
|
+
data.tar.gz: 452216d2b65e6b8e2046c5d58e36478a9fac6196a0aeb80911509f3fceb860eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 126edb7d74e063d06faf0ff6428b2ad8fe75f4194d7068e0788e7077bdd8a35561b15188a71fdcd17d95772b55561477883cb3764c965ca66bfd32590cca7664
|
7
|
+
data.tar.gz: 50f0251b6fff470d05bf9b0c52de4f6072c1b72cb0df66adff0cbda9ad1be74b8ced8ec646970eb6e261bb3c58576956734a4c07b3a3f5d77a9b00531579fca0
|
data/Gemfile
CHANGED
data/Rakefile
CHANGED
@@ -6,20 +6,19 @@ require "rake/testtask"
|
|
6
6
|
require "rake/extensiontask"
|
7
7
|
require "rake_compiler_dock"
|
8
8
|
|
9
|
-
cross_rubies = ["3.
|
9
|
+
cross_rubies = ["3.4.0", "3.3.5", "3.2.0", "3.1.0"]
|
10
10
|
cross_platforms = [
|
11
11
|
"aarch64-linux-gnu",
|
12
12
|
"aarch64-linux-musl",
|
13
13
|
"arm-linux-gnu",
|
14
14
|
"arm-linux-musl",
|
15
|
-
"arm64-darwin",
|
16
|
-
"x64-mingw-ucrt",
|
17
|
-
"x64-mingw32",
|
18
15
|
"x86-linux-gnu",
|
19
16
|
"x86-linux-musl",
|
20
|
-
"x86_64-darwin",
|
21
17
|
"x86_64-linux-gnu",
|
22
18
|
"x86_64-linux-musl",
|
19
|
+
"arm64-darwin",
|
20
|
+
"x86_64-darwin",
|
21
|
+
"x64-mingw-ucrt",
|
23
22
|
]
|
24
23
|
ENV["RUBY_CC_VERSION"] = cross_rubies.join(":")
|
25
24
|
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rcee_precompiled
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: arm-linux-gnu
|
6
6
|
authors:
|
7
7
|
- Mike Dalessio
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-12-14 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Part of a project to explain how Ruby C extensions work.
|
14
14
|
email:
|
@@ -25,10 +25,10 @@ files:
|
|
25
25
|
- ext/precompiled/precompiled.c
|
26
26
|
- ext/precompiled/precompiled.h
|
27
27
|
- lib/rcee/precompiled.rb
|
28
|
-
- lib/rcee/precompiled/3.0/precompiled.so
|
29
28
|
- lib/rcee/precompiled/3.1/precompiled.so
|
30
29
|
- lib/rcee/precompiled/3.2/precompiled.so
|
31
30
|
- lib/rcee/precompiled/3.3/precompiled.so
|
31
|
+
- lib/rcee/precompiled/3.4/precompiled.so
|
32
32
|
- lib/rcee/precompiled/version.rb
|
33
33
|
- rcee_precompiled.gemspec
|
34
34
|
homepage: https://github.com/flavorjones/ruby-c-extensions-explained
|
@@ -43,15 +43,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
43
43
|
requirements:
|
44
44
|
- - ">="
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '3.
|
46
|
+
version: '3.1'
|
47
47
|
- - "<"
|
48
48
|
- !ruby/object:Gem::Version
|
49
|
-
version: 3.
|
49
|
+
version: 3.5.dev
|
50
50
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
54
|
+
version: 3.3.22
|
55
55
|
- - ">="
|
56
56
|
- !ruby/object:Gem::Version
|
57
57
|
version: 3.3.22
|
Binary file
|