jarbler 0.2.2 → 0.2.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: 2c6eb4bd62cd4f241608b950e6cc12818efba108f75c79650a6ddcfa558315f6
4
- data.tar.gz: 13574e8c87bcb8d8a3a3ed2a6263046559982d8de8572aaaa31a24ff81717c62
3
+ metadata.gz: bba70c5fbf20494c82fc683d2e4ad8c39952000e8a525c7070f142219f7c38bd
4
+ data.tar.gz: '085db112eb0163afbad08545074af2a3994ec6cc498f56b6da16910833c2fe62'
5
5
  SHA512:
6
- metadata.gz: e87be06e969d43ec0584c96708456404d54011362a681a7f99617f72c3a7108a8e203e7a26279e5106f0f535b75cde0a2f1e3df10874b354816d519893d37161
7
- data.tar.gz: 2bffe72a8c78ba10605de7da93002f10eb08018ca17c88f932d1da49abefbfa6b68898f6d3ab22a338435dc57564118c1cf525272c45e277e099182952f0ceb9
6
+ metadata.gz: 3a18adb5dfd17593a8c9fa8fb0c997b1e65544705a1074f39984923c6bfd9d82eb938c30b32b09339d349a17cb2e591ed817812060228bb94ecdb6e8cc890e2f
7
+ data.tar.gz: 36b98d4f3293ffcc11bbec6ef8e53f57a934d7885d30be43c6ed4c0dbcf3c54802d606d6a5d11292c37a4e1681077a92ecc7f9d23a49008ada7b95c1b0634d17
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.2.3] - 2024-06-13
4
+
5
+ - Show used configuration values in log output
6
+
3
7
  ## [0.2.2] - 2024-06-13
4
8
 
5
9
  - Exclude certain dirs or files from compilation with 'excludes_from_compile' option in config file
@@ -23,6 +23,24 @@ module Jarbler
23
23
  config.executable = config.executable.sub(/\.rb$/, '.class') if config.compile_ruby_files
24
24
 
25
25
  config.validate_values
26
+
27
+ puts ""
28
+ if File.exist?(CONFIG_FILE)
29
+ puts "Configuration loaded from file #{File.join(Dir.pwd, CONFIG_FILE)}"
30
+ else
31
+ puts "No configuration file found at #{File.join(Dir.pwd, CONFIG_FILE)}. Using default values."
32
+ end
33
+ puts "Used configuration values are:"
34
+ puts " compile_ruby_files: #{config.compile_ruby_files}" if config.compile_ruby_files
35
+ puts " excludes: #{config.excludes}" unless config.excludes.empty?
36
+ puts " excludes_from_compile: #{config.excludes_from_compile}" unless config.excludes_from_compile.empty?
37
+ puts " executable: #{config.executable}"
38
+ puts " executable_params: #{config.executable_params}" unless config.executable_params.empty?
39
+ puts " include_gems_to_compile: #{config.include_gems_to_compile}" if config.include_gems_to_compile
40
+ puts " includes: #{config.includes}" unless config.includes.empty?
41
+ puts " jar_name: #{config.jar_name}"
42
+ puts " jruby_version: #{config.jruby_version}"
43
+ puts ""
26
44
  config
27
45
  end
28
46
 
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Jarbler
4
- VERSION = "0.2.2"
4
+ VERSION = "0.2.3"
5
5
  VERSION_DATE = "2024-06-13"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jarbler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Ramm