jruby-bundler 0.9.6 → 0.9.7
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/lib/jbundler.rb +6 -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: 15692515a0aa2540cdf4781eefe97b7f43e700d97747cd70dd022f1cf321eb66
|
4
|
+
data.tar.gz: 1de740aeaa625b7df1c36257e04db05283897fe856fe42360c3e9d3d28ad7e4e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 94fe67e53477a563e77bd96933e8e9737a81b4a4874b641518d2a104d3062ceec1ad5cda85a7abfa2e12302750a3048f2c294f03febfde7752c6f6226ef19c62
|
7
|
+
data.tar.gz: de20f591d7b1a96399d46aa49156e2f5a63d381731dddb0ed2b6748c7dfdaa159c852af09159111cc498a5d76218cea8d74676b786617e35c1d55e629184fead
|
data/lib/jbundler.rb
CHANGED
@@ -35,6 +35,7 @@ module JBundler
|
|
35
35
|
|
36
36
|
def self.require_jars
|
37
37
|
if context.vendor.vendored?
|
38
|
+
warn "jbundler require_jars - context.vendor.vendored"
|
38
39
|
jars = context.vendor.require_jars
|
39
40
|
if context.config.verbose
|
40
41
|
warn "jbundler classpath:"
|
@@ -43,6 +44,7 @@ module JBundler
|
|
43
44
|
end
|
44
45
|
end
|
45
46
|
elsif context.classpath.exists? && context.jarfile.exists_lock?
|
47
|
+
warn "jbundler require_jars - classpath.exists? "
|
46
48
|
require 'java'
|
47
49
|
context.classpath.require_classpath
|
48
50
|
if context.config.verbose
|
@@ -51,10 +53,11 @@ module JBundler
|
|
51
53
|
warn "\t#{path}"
|
52
54
|
end
|
53
55
|
end
|
56
|
+
warn "jbundler require_jars - no_more_warnings"
|
54
57
|
Jars.no_more_warnings
|
55
58
|
end
|
56
59
|
end
|
57
|
-
|
60
|
+
|
58
61
|
def self.install( debug = false, verbose = false )
|
59
62
|
jbundler = JBundler::LockDown.new( context.config )
|
60
63
|
msg = jbundler.lock_down( false, debug, verbose )
|
@@ -65,9 +68,11 @@ module JBundler
|
|
65
68
|
if context.config.skip
|
66
69
|
warn "skip jbundler setup" if context.config.verbose
|
67
70
|
else
|
71
|
+
warn "jbundler require_jars"
|
68
72
|
require_jars
|
69
73
|
end
|
70
74
|
end
|
71
75
|
end
|
72
76
|
|
77
|
+
warn "jbundler setup"
|
73
78
|
JBundler.setup
|