yamlscript 0.1.96 → 0.1.97
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/ChangeLog.md +4 -0
- data/Makefile +6 -5
- data/lib/yamlscript/version.rb +1 -1
- data/lib/yamlscript.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: 10cbb18d79530e50d373463598d50b19e8347b7592ba3291acb5003f2252bc01
|
4
|
+
data.tar.gz: de0ce6ecef6d72fc8081f2444d8545661a54844194ac0ea8c69aa70ee7307d5b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b9b820fe0895276f429cf9ed52ad31d5d73dc31b32f8eb555f943e181e354fee6d527a3e7ea391ed5b9b852844c0f0faba25973bb6dbc7221fadb8e251cff52
|
7
|
+
data.tar.gz: 547eb068951653f86e61b67a913921f97f02e51d60b049dc449b29b1d25a29c11eee2257a812175e630c721d8cd1e3f9edaaafcacc7a6c92b67e71b0eaaf0f4d
|
data/ChangeLog.md
CHANGED
data/Makefile
CHANGED
@@ -3,12 +3,13 @@ include $(COMMON)/binding.mk
|
|
3
3
|
|
4
4
|
RUBY := $(shell command -v bundle)
|
5
5
|
|
6
|
-
|
6
|
+
RAKE-CMDS := \
|
7
7
|
build \
|
8
8
|
release \
|
9
9
|
test \
|
10
10
|
|
11
|
-
|
11
|
+
GEM-HOME := gem
|
12
|
+
export GEM_HOME := $(GEM-HOME)
|
12
13
|
|
13
14
|
|
14
15
|
#------------------------------------------------------------------------------
|
@@ -21,10 +22,10 @@ ifdef RUBY
|
|
21
22
|
update:
|
22
23
|
bundle install
|
23
24
|
|
24
|
-
$(
|
25
|
+
$(RAKE-CMDS):: $(GEM-HOME)
|
25
26
|
bundle exec rake $@
|
26
27
|
|
27
|
-
$(
|
28
|
+
$(GEM-HOME):
|
28
29
|
gem install minitest -v 5.20.0
|
29
30
|
bundle install
|
30
31
|
endif
|
@@ -34,4 +35,4 @@ clean::
|
|
34
35
|
$(RM) -r pkg
|
35
36
|
|
36
37
|
realclean::
|
37
|
-
$(RM) -r $(
|
38
|
+
$(RM) -r $(GEM-HOME)
|
data/lib/yamlscript/version.rb
CHANGED
data/lib/yamlscript.rb
CHANGED
@@ -16,7 +16,7 @@ class YAMLScript
|
|
16
16
|
# This value is automatically updated by 'make bump'.
|
17
17
|
# The version number is used to find the correct shared library file.
|
18
18
|
# We currently only support binding to an exact version of libyamlscript.
|
19
|
-
YAMLSCRIPT_VERSION = '0.1.
|
19
|
+
YAMLSCRIPT_VERSION = '0.1.97'
|
20
20
|
|
21
21
|
# A low-level interface to the native library
|
22
22
|
module LibYAMLScript
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: yamlscript
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.97
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ingy döt Net
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2025-
|
12
|
+
date: 2025-06-12 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: minitest
|