jruby-jars 9.0.0.0.pre1 → 9.0.0.0.pre2
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/Mavenfile +8 -4
- data/lib/{jruby-core-9.0.0.0.pre1.jar → jruby-core-9.0.0.0.pre2-complete.jar} +0 -0
- data/lib/jruby-jars.rb +5 -1
- data/lib/jruby-jars/version.rb +2 -2
- data/lib/jruby-stdlib-9.0.0.0.pre2.jar +0 -0
- data/lib/jruby-truffle-9.0.0.0.pre2-complete.jar +0 -0
- metadata +5 -4
- data/lib/jruby-stdlib-9.0.0.0.pre1.jar +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 29ade13b08792af4612267926e515cd8b8061980
|
|
4
|
+
data.tar.gz: e4369601cc6c055a672a9a37ab13e13d1ab3ea45
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 35789dd7b1165313a6c764dba95bc457e1f6820c170ff073806f9252a7601d84fa05bc84721d16529b02ad41ecc00359b38b0dcbe3867fbc135fbed149a8b3b4
|
|
7
|
+
data.tar.gz: b858fe88912c11390ad52c9fb919bfb71dcd47b90d0302c0438743d689e1cfe0ca7509816d0c73cbbc47d222eeea0fb8c473f1f870d4c77b21cdeeaa0ad8f7dc
|
data/Mavenfile
CHANGED
|
@@ -28,9 +28,9 @@ properties( 'tesla.dump.pom' => 'pom.xml',
|
|
|
28
28
|
'tesla.dump.readonly' => true,
|
|
29
29
|
'jruby.plugins.version' => '1.0.7',
|
|
30
30
|
# we share the already installed gems
|
|
31
|
-
'gem.home' => '${
|
|
31
|
+
'gem.home' => '${jruby_home}/lib/ruby/gems/shared',
|
|
32
32
|
# need jruby_home but not jruby.home as name otherwise
|
|
33
|
-
#
|
|
33
|
+
# polyglot-plugin will pick the jruby from jruby.home
|
|
34
34
|
'jruby_home' => '${basedir}/../../' )
|
|
35
35
|
|
|
36
36
|
unless version =~ /-SNAPSHOT/
|
|
@@ -40,10 +40,14 @@ properties( 'tesla.dump.pom' => 'pom.xml',
|
|
|
40
40
|
execute 'copy jruby.jar', 'prepare-package' do |ctx|
|
|
41
41
|
source = File.expand_path( ctx.project.properties[ 'jruby_home' ].to_pathname )
|
|
42
42
|
# TODO somehow the lib/jruby.jar gets moved away to avoid conflicts
|
|
43
|
-
FileUtils.cp( Dir[ File.join( source,
|
|
43
|
+
FileUtils.cp( Dir[ File.join( source, "lib/jruby.jar" ) ].first,
|
|
44
44
|
File.join( ctx.project.basedir.to_pathname,
|
|
45
45
|
'lib',
|
|
46
|
-
"jruby-core-#{ctx.project.version}.jar" ) )
|
|
46
|
+
"jruby-core-#{ctx.project.version}-complete.jar" ) )
|
|
47
|
+
FileUtils.cp( Dir[ File.join( source, "lib/jruby-truffle.jar" ) ].first,
|
|
48
|
+
File.join( ctx.project.basedir.to_pathname,
|
|
49
|
+
'lib',
|
|
50
|
+
"jruby-truffle-#{ctx.project.version}-complete.jar" ) )
|
|
47
51
|
end
|
|
48
52
|
|
|
49
53
|
# do not push the gem during deploy phase
|
|
Binary file
|
data/lib/jruby-jars.rb
CHANGED
|
@@ -4,10 +4,14 @@ module JRubyJars
|
|
|
4
4
|
PATH = File.expand_path(File.dirname(__FILE__))
|
|
5
5
|
|
|
6
6
|
def self.core_jar_path
|
|
7
|
-
"#{PATH}/jruby-core-#{JRubyJars::MAVEN_VERSION}.jar"
|
|
7
|
+
"#{PATH}/jruby-core-#{JRubyJars::MAVEN_VERSION}-complete.jar"
|
|
8
8
|
end
|
|
9
9
|
|
|
10
10
|
def self.stdlib_jar_path
|
|
11
11
|
"#{PATH }/jruby-stdlib-#{JRubyJars::MAVEN_VERSION}.jar"
|
|
12
12
|
end
|
|
13
|
+
|
|
14
|
+
def self.truffle_jar_path
|
|
15
|
+
"#{PATH }/jruby-truffle-#{JRubyJars::MAVEN_VERSION}-complete.jar"
|
|
16
|
+
end
|
|
13
17
|
end
|
data/lib/jruby-jars/version.rb
CHANGED
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jruby-jars
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 9.0.0.0.
|
|
4
|
+
version: 9.0.0.0.pre2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Charles Oliver Nutter
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-04-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: |-
|
|
14
14
|
This gem includes the core JRuby code and the JRuby 1.8/1.9 stdlib as jar files.
|
|
@@ -24,8 +24,9 @@ files:
|
|
|
24
24
|
- README.txt
|
|
25
25
|
- lib/jruby-jars.rb
|
|
26
26
|
- lib/jruby-jars/version.rb
|
|
27
|
-
- lib/jruby-core-9.0.0.0.
|
|
28
|
-
- lib/jruby-stdlib-9.0.0.0.
|
|
27
|
+
- lib/jruby-core-9.0.0.0.pre2-complete.jar
|
|
28
|
+
- lib/jruby-stdlib-9.0.0.0.pre2.jar
|
|
29
|
+
- lib/jruby-truffle-9.0.0.0.pre2-complete.jar
|
|
29
30
|
- jruby-jars.gemspec
|
|
30
31
|
homepage: http://github.com/jruby/jruby/tree/master/gem/jruby-jars
|
|
31
32
|
licenses:
|
|
Binary file
|