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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/jbundler.rb +6 -1
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dac64d072d3d2638d7a66053c633f73423073973e3660c99f0735036b36cd799
4
- data.tar.gz: af1336d31eb386357ac083e27303d2f06eff65f525d3a656fd061b94eec12aec
3
+ metadata.gz: 15692515a0aa2540cdf4781eefe97b7f43e700d97747cd70dd022f1cf321eb66
4
+ data.tar.gz: 1de740aeaa625b7df1c36257e04db05283897fe856fe42360c3e9d3d28ad7e4e
5
5
  SHA512:
6
- metadata.gz: f7987861eaff9426a4117fa1b1bc3aeeaf5810f011d6adf499d8166476c18405f6ce81889dc88b9c1f2b3e9447785390061c9d6b4bdfcfb466b8aefca505ddda
7
- data.tar.gz: e59d83c06b431a9dc9d01d16de26496e295dd366d6d1f7c146c33611786470468dc60ff65636f7477cb45da9e5328781b6f72e4537fd9580b95d2c8733d9a030
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jruby-bundler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.6
4
+ version: 0.9.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christian Meier