yamlscript 0.1.68 → 0.1.69

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: 971ba386c137229c18fd54b2bd8bc2dcdefb4785d0bc2507f5197c4773a89059
4
+ data.tar.gz: 6813447bd6e4cffcfef1971684c1da8ecd3d48ae017bba579c2229aa3e4907d9
5
5
  SHA512:
6
- metadata.gz: a8ade5add55e6c727f2944709d3e7845c735f4606c313d861367ed940e71b3cd95dc947aac6f0b5bb00934af38d20044ee3684e908c4aa0b2d4768f516e05835
7
- data.tar.gz: e0d7c8d6d7ebd708093234c4fa287c9203eb8f9063c1a6dcb246e76caebf9fb42684b16ce6db77a0ce97d9aff0ae1732af4e8e38c1aa02243fb9a8658d7cdd32
6
+ metadata.gz: a776e99fe5720b05cb059915010c1f282b651c0778c22af51a06a12f44d3443b66d041884bf33316f0afb82dd903a5f2f2dbafb49fc64c1dcdfe09092376e2dd
7
+ data.tar.gz: 2f321595820e6e6a8762d5b5ce6d13cf28d502fd466539bd8ad41b502f35433a1c723104074d437e963a9352d1075ee1b33feeb27044fb9bc8d15fff52278ced
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,7 @@
1
+ ## [0.1.69] - 2024-07-30
2
+
3
+ - libyamlscript 0.1.69
4
+
1
5
  ## [0.1.68] - 2024-07-19
2
6
 
3
7
  - 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.69"
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.69'
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.69
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-07-30 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: minitest