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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/jarbler/config.rb +18 -0
- data/lib/jarbler/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bba70c5fbf20494c82fc683d2e4ad8c39952000e8a525c7070f142219f7c38bd
|
|
4
|
+
data.tar.gz: '085db112eb0163afbad08545074af2a3994ec6cc498f56b6da16910833c2fe62'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3a18adb5dfd17593a8c9fa8fb0c997b1e65544705a1074f39984923c6bfd9d82eb938c30b32b09339d349a17cb2e591ed817812060228bb94ecdb6e8cc890e2f
|
|
7
|
+
data.tar.gz: 36b98d4f3293ffcc11bbec6ef8e53f57a934d7885d30be43c6ed4c0dbcf3c54802d606d6a5d11292c37a4e1681077a92ecc7f9d23a49008ada7b95c1b0634d17
|
data/CHANGELOG.md
CHANGED
data/lib/jarbler/config.rb
CHANGED
|
@@ -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
|
|
data/lib/jarbler/version.rb
CHANGED