File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,15 @@ bin.includes = plugin.xml,\
6
6
icons/,\
7
7
rb/README.rdoc,\
8
8
lib/rsyntaxtextarea.jar,\
9
- lib/jruby.jar
9
+ lib/jruby.jar,\
10
+ lib/ruby/stdlib/,\
11
+ lib/ruby/gems/,\
12
+ lib/ruby/truffle/
10
13
src.includes = lib/jruby.jar,\
11
14
rb/knime.rb,\
12
15
icons/,\
13
16
rb/README.rdoc,\
14
- lib/rsyntaxtextarea.jar
17
+ lib/rsyntaxtextarea.jar,\
18
+ lib/ruby/gems/,\
19
+ lib/ruby/stdlib/\
20
+ lib/ruby/truffle
Original file line number Diff line number Diff line change @@ -47,5 +47,11 @@ def download(url, fn)
47
47
48
48
# ****************** download jruby ***********************
49
49
download JRUBY_SRC , jruby_zip
50
- `unzip -j #{ jruby_zip } jruby-9.0.0.0/lib/jruby.jar`
50
+
51
+ jruby_lib = "jruby-#{ VERSION } /lib/"
52
+ #`unzip -j #{jruby_zip} #{jruby_lib}/jruby.jar`
53
+ `unzip #{ jruby_zip } `
54
+ %w( ruby jruby.jar ) . each { |file | `mv -v #{ jruby_lib + file } ./` }
55
+
51
56
File . delete jruby_zip
57
+ `rm -r jruby-#{ VERSION } `
You can’t perform that action at this time.
0 commit comments