jsonnet 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/jsonnet/extconf.rb +7 -0
- data/lib/jsonnet/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 92c5f9344c4b31e1c183acd4e12b5bd596540a13c938a4eb938f0759a754adce
|
4
|
+
data.tar.gz: db67d7972db0f962419dafb2b8ae8fdcd2bd7e3847f6315379a4fdaa1843b3f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b2b912c43980ad07bb4e40c1f467c67b919c80552b6c51984699f9127a645b099e5f43e60bfe2574634d8ba8e9b2116106511ee54880eae2e876aead524169f
|
7
|
+
data.tar.gz: 1aac5b2c3b9047242184d613a26730a4418abbcb35008f1a91c71279d95a6747952c46b39b5720c25ced447e3a325d1b2aef7d7de92fe11775c3033bc734368b
|
data/ext/jsonnet/extconf.rb
CHANGED
@@ -76,6 +76,13 @@ unless using_system_libraries?
|
|
76
76
|
# but the makefile to fail. These commands add the necessary paths to do both
|
77
77
|
$LIBPATH = ["#{recipe.path}/lib"] | $LIBPATH
|
78
78
|
$CPPFLAGS << " -I#{recipe.path}/include"
|
79
|
+
|
80
|
+
# jsonnet_wrap extension must be linked with c++ stdlib because
|
81
|
+
# the C++ library Rapid YAML is being statically linked.
|
82
|
+
rbconfig = RbConfig::MAKEFILE_CONFIG
|
83
|
+
if rbconfig['LDSHAREDXX']
|
84
|
+
rbconfig['LDSHARED'] = rbconfig['LDSHAREDXX']
|
85
|
+
end
|
79
86
|
end
|
80
87
|
|
81
88
|
abort 'libjsonnet.h not found' unless have_header('libjsonnet.h')
|
data/lib/jsonnet/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jsonnet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yuki Yugui Sonoda
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-09-
|
11
|
+
date: 2022-09-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: mini_portile2
|