jsonnet 0.2.1 → 0.3.0
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/README.md +1 -1
- data/ext/jsonnet/extconf.rb +2 -2
- 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: e1eae86ab6c46d74404411fd29d877109116617170f2423738623f067eef21b1
|
|
4
|
+
data.tar.gz: ec239abefc2eaf068b36736bdfc0ef1cc7202538418575c6c19cbb077c1152d9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 85538d0bec2ffba85010a2058b2652bb5fc59bacafe25dc2628bab9f2eb379041f8e3271273a76493b2608bd11f60494e8ab4ef0e55c57eed02272d5d024b453
|
|
7
|
+
data.tar.gz: 6ec195d4487be4c68914081f3c83786f254d64f8da61ee7413a73a642e0e46f2d9943540534136ba1dcda69c23308485666a5fa235813e0e7bed6252f3b6e0fe
|
data/README.md
CHANGED
|
@@ -24,7 +24,7 @@ Or install it yourself as:
|
|
|
24
24
|
$ gem install jsonnet
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
-
By default this gem will compile and install Jsonnet (v0.
|
|
27
|
+
By default this gem will compile and install Jsonnet (v0.10.0) as part of
|
|
28
28
|
installation. However you can use the system version of Jsonnet if you prefer.
|
|
29
29
|
This would be the recommended route if you want to use a different version
|
|
30
30
|
of Jsonnet or are having problems installing this.
|
data/ext/jsonnet/extconf.rb
CHANGED
|
@@ -13,8 +13,8 @@ unless using_system_libraries?
|
|
|
13
13
|
require 'mini_portile2'
|
|
14
14
|
message "Using mini_portile version #{MiniPortile::VERSION}\n"
|
|
15
15
|
|
|
16
|
-
recipe = MiniPortile.new('jsonnet', 'v0.
|
|
17
|
-
recipe.files = ['https://github.com/google/jsonnet/archive/v0.
|
|
16
|
+
recipe = MiniPortile.new('jsonnet', 'v0.10.0')
|
|
17
|
+
recipe.files = ['https://github.com/google/jsonnet/archive/v0.10.0.tar.gz']
|
|
18
18
|
class << recipe
|
|
19
19
|
|
|
20
20
|
def compile
|
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.
|
|
4
|
+
version: 0.3.0
|
|
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: 2018-
|
|
11
|
+
date: 2018-05-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: mini_portile2
|