jsonnet 0.5.0 → 0.5.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8557e0025fed7a2481d2bb42fc736399ef68203c42a982d9e7b3cbb7b4d9fb5c
4
- data.tar.gz: 74c3995ba7b43df06fc928aab1790506508df78d05536df4915e5684c2c0a0a5
3
+ metadata.gz: b21144880989556e02da3a182e6d527b7038aa090917a9f52563c77533348736
4
+ data.tar.gz: 5326728e4f910249f23cd7f26ccebab4630da2f13dc3f1a9d1bb15e000aaffc2
5
5
  SHA512:
6
- metadata.gz: 2a99ecc45d1a1e5c0518335e3a3332e6a48b199e29c50c4d3dadeaa52580ab5d1175b4205a109fc50678dff711f3814c4417e382258b8b7c959585450a4bce54
7
- data.tar.gz: 80be3522daea154d4f7e6d4ce58bfcd217980468edce4c2db04fe00737c2a3d4130c656e165678ce114b74538e596db7216010770a79922b94984bc2bd087ca6
6
+ metadata.gz: 8423047526b7bcda8f25501bfa8b937cf585786982d477053445230877b4dc7ea0cff3d398abcc6cdacddbc8387611a187f9760ae7290034dbb4b157768cd833
7
+ data.tar.gz: 36f6a67d475dbddbc356fe42a9d164af6dabdf7d9be49dfb19b127413f24e0458aa7c8ae3306100a9f1f031b933a0346874137fb1589555bc35cc6625d291728
@@ -0,0 +1,45 @@
1
+ name: Run Unit Tests
2
+
3
+ on:
4
+ push:
5
+ branches: [ "master" ]
6
+ pull_request:
7
+ branches: [ "master" ]
8
+
9
+ permissions:
10
+ contents: read
11
+
12
+ jobs:
13
+ test:
14
+ name: Test
15
+ strategy:
16
+ matrix:
17
+ ruby-version: ['2.7', '3.0', '3.1']
18
+ os: ['ubuntu-latest', 'macos-latest']
19
+ runs-on: ${{ matrix.os }}
20
+
21
+ steps:
22
+ - uses: actions/checkout@v3
23
+ - name: Set up Ruby
24
+ uses: ruby/setup-ruby@v1
25
+ with:
26
+ ruby-version: ${{ matrix.ruby-version }}
27
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
28
+ - name: Run tests
29
+ run: bundle exec rake test
30
+
31
+ test-with-system-lib:
32
+ name: Test with system library
33
+ runs-on: ubuntu-latest
34
+
35
+ steps:
36
+ - uses: actions/checkout@v3
37
+ - name: Set up Ruby
38
+ uses: ruby/setup-ruby@v1
39
+ with:
40
+ ruby-version: 3.1
41
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
42
+ - name: Prepare libjsonnet
43
+ run: sudo apt install libjsonnet-dev
44
+ - name: Run tests
45
+ run: env JSONNET_USE_SYSTEM_LIBRARIES=1 bundle exec rake test
@@ -76,6 +76,14 @@ 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
+ end
81
+
82
+ # jsonnet_wrap extension must be linked with c++ stdlib because
83
+ # the C++ library Rapid YAML is being statically linked.
84
+ rbconfig = RbConfig::MAKEFILE_CONFIG
85
+ if rbconfig['LDSHAREDXX']
86
+ rbconfig['LDSHARED'] = rbconfig['LDSHAREDXX']
79
87
  end
80
88
 
81
89
  abort 'libjsonnet.h not found' unless have_header('libjsonnet.h')
@@ -1,3 +1,3 @@
1
1
  module Jsonnet
2
- VERSION = "0.5.0"
2
+ VERSION = "0.5.2"
3
3
  end
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.0
4
+ version: 0.5.2
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-18 00:00:00.000000000 Z
11
+ date: 2022-09-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mini_portile2
@@ -89,6 +89,7 @@ extensions:
89
89
  extra_rdoc_files: []
90
90
  files:
91
91
  - ".clang-format"
92
+ - ".github/workflows/ruby.yml"
92
93
  - ".gitignore"
93
94
  - ".travis.yml"
94
95
  - Gemfile