jarbler 0.4.2 → 0.4.3

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: af40fd597f65765920d0825c739db3604cd8ec0d6a975889e10b9f17b0869dce
4
- data.tar.gz: 3b887f4cb0ce06669a78da49cdc3f28fd7137cca0e7cd7eeebd60cfc1f8a3f2d
3
+ metadata.gz: 97e69aa07983bce3eac767254171ee446d3d75f05cc391c95d4f8cf2be52b98b
4
+ data.tar.gz: 001b795796c7deb3fc315256a1938bd7aaae0bb98d12ef7575cc81bcf87dd913
5
5
  SHA512:
6
- metadata.gz: b07fc51c641293913293b3d3cf4713e306f73c3f746237406905dfe973f31ca08497db7a35ebb1d870bc89a2690aa5775fbfe84c1bd120108cc3c7bb4e8fe786
7
- data.tar.gz: 6b8ef9fe88116c68b47ad5fc7d3f7923d8a8e0d5c5b511fbe1c9a9a179841ab95035fa65dd3761f7d1466e2d0df9176b8061eed9dc548109290499cb07f04783
6
+ metadata.gz: c1b459f1612a905b71b9e9a0c4f73c60c7ecc38bfe5427cb57f03bad3c8c4228ac9f501059ca0d3f6459031d101c2b580cc04037da54ae3a4d2385477c87d194
7
+ data.tar.gz: 2c5434ea23201d59276dbca474b6927e155d4556db012fcd78b1a1935500b3af8bc073d0db103c08300f92f467f416294cd908267d29e88431eebd2365a91589
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.4.3] - 2025-07-29
4
+
5
+ - Enable Ruby and JRuby warnings ($VERBOSE = true) in call of 'jarble' if environment variable `DEBUG` is set
6
+
3
7
  ## [0.4.2] - 2025-07-24
4
8
 
5
9
  - Native Gem extensions are also copied into the jar file if the Gem has a native extension<br/>
data/bin/jarble CHANGED
@@ -1,5 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
+ # Ensure Ruby and JRuby warnings are enabled in debug mode
4
+ $VERBOSE = true if ENV['DEBUG']
5
+
3
6
  require 'jarbler'
4
7
 
5
8
  # call config if arguments are passed and argument = 'config'
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Jarbler
4
- VERSION = "0.4.2"
5
- VERSION_DATE = "2025-07-24"
4
+ VERSION = "0.4.3"
5
+ VERSION_DATE = "2025-07-29"
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jarbler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Ramm
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-07-24 00:00:00.000000000 Z
11
+ date: 2025-07-29 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Pack a Ruby app combined with JRuby runtime and all its Gem dependencies
14
14
  into a jar file to simply run the app on any Java platform by '> java -jar file.jar'