rcee_precompiled 0.5.1-x86_64-linux-musl → 0.6.0-x86_64-linux-musl
Sign up to get free protection for your applications and to get access to all the features.
- 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: 841d0a803c003565fde0c1dc76ef8602f04c08fce647627e24dcc22f1a7c5001
|
4
|
+
data.tar.gz: 7d97a447e71024a865c006151604e87670fa13597e956d6c9279113f71fa9464
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2919aa95a024be8505b2c671244223be957ad39b677aa754fb3a76dc160e8767325e7705faf81a8b0bb4a0196ca535b25b1762b860bac60ca13eb7e490178977
|
7
|
+
data.tar.gz: e576756ea179f3ae95fd9459a0a5db774b026ac459151ed121fb36310a2e1da2802b25e460a0cc5681ae3310f2863af1e2573f93679ed4350c3248f481d30f77
|
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: x86_64-linux-musl
|
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
|