yamlscript 0.1.68 → 0.1.70

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d5729d58bde6af89a2e9bb3d113d97cdf0294cfb233835151827915af5a71b64
4
- data.tar.gz: 8c5e24215cac4655ed808e3ba3cf5dc291d127c6c51cae36c2f1c5fe2d1841af
3
+ metadata.gz: 952da328d29954e55382a684920769b087e466a1801b7b36c0841f322c13ed5a
4
+ data.tar.gz: 7cfbb2bfac0421ea2ef49d20d4d970b68d7cdc9e99e1d5187e1b37763694ef07
5
5
  SHA512:
6
- metadata.gz: a8ade5add55e6c727f2944709d3e7845c735f4606c313d861367ed940e71b3cd95dc947aac6f0b5bb00934af38d20044ee3684e908c4aa0b2d4768f516e05835
7
- data.tar.gz: e0d7c8d6d7ebd708093234c4fa287c9203eb8f9063c1a6dcb246e76caebf9fb42684b16ce6db77a0ce97d9aff0ae1732af4e8e38c1aa02243fb9a8658d7cdd32
6
+ metadata.gz: d693ee738f2c2f4e715b9e6fc2239fd1a1062aa33a93fe3de4ed6ced81ff00b24585b58ea91a4b5a7a3bc6906f196a1ebe73a3a10e6b0b53eaa1e283ccb6ac09
7
+ data.tar.gz: 364b64edd676ad5ea4ebeb73b508eb8910e7fbbc76a72eae94ffa93602b7beef118739740faf07b9d514ca2a0b5365db1b2912fd9e39044504eb1d77b8aab4e4
data/.gitignore CHANGED
@@ -3,6 +3,7 @@
3
3
  /_yardoc/
4
4
  /coverage/
5
5
  /doc/
6
+ /gem/
6
7
  /pkg/
7
8
  /.rake_tasks*
8
9
  /spec/reports/
data/ChangeLog.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [0.1.70] - 2024-08-10
2
+
3
+ - libyamlscript 0.1.70
4
+
5
+ ## [0.1.69] - 2024-07-30
6
+
7
+ - libyamlscript 0.1.69
8
+
1
9
  ## [0.1.68] - 2024-07-19
2
10
 
3
11
  - libyamlscript 0.1.68
data/Makefile CHANGED
@@ -5,10 +5,11 @@ RUBY := $(shell command -v bundle)
5
5
 
6
6
  RAKE_CMDS := \
7
7
  build \
8
- clean \
9
8
  release \
10
9
  test \
11
10
 
11
+ export GEM_HOME=gem
12
+
12
13
 
13
14
  #------------------------------------------------------------------------------
14
15
 
@@ -20,11 +21,16 @@ ifdef RUBY
20
21
  update:
21
22
  bundle install
22
23
 
23
- $(RAKE_CMDS)::
24
+ $(RAKE_CMDS):: $(GEM_HOME)
24
25
  bundle exec rake $@
25
26
 
27
+ $(GEM_HOME):
28
+ gem install minitest -v 5.20.0
26
29
  endif
27
30
 
28
31
  clean::
29
32
  $(RM) Gemfile.lock .rake_tasks*
30
33
  $(RM) -r pkg
34
+
35
+ realclean::
36
+ $(RM) -r $(GEM_HOME)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class YAMLScript
4
- VERSION = "0.1.68"
4
+ VERSION = "0.1.70"
5
5
  end
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.68'
19
+ YAMLSCRIPT_VERSION = '0.1.70'
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.68
4
+ version: 0.1.70
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: 2024-07-19 00:00:00.000000000 Z
12
+ date: 2024-08-10 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: minitest