jruby-jars 9.0.0.0.pre1 → 9.0.0.0.pre2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fe410e954252f91524ab4e5f252aec10b6fd8ab9
4
- data.tar.gz: 5d819217c7181e6f5a8346e98591bcaab8e52d0a
3
+ metadata.gz: 29ade13b08792af4612267926e515cd8b8061980
4
+ data.tar.gz: e4369601cc6c055a672a9a37ab13e13d1ab3ea45
5
5
  SHA512:
6
- metadata.gz: 5f04dc444f3b1beb684f646acd34c6854c36463f1b0b639d0bb643ce0bcac2da1e4bf82c6fcbb9e183bb4b91b17c5639409efe4f59fc4bb330312a60d8c820d3
7
- data.tar.gz: f2628da3c1028ed11f737c1bb11768da28b4be54b1d33e6775e3c83e9d88315a5ecda11d5c9bad5e5e23e542d8f61de26bc3c8f50a41c4f0bd7b2715b3b8fd19
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' => '${jruby.home}/lib/ruby/gems/shared',
31
+ 'gem.home' => '${jruby_home}/lib/ruby/gems/shared',
32
32
  # need jruby_home but not jruby.home as name otherwise
33
- # tesla-plugin will pick the jruby from jruby.home
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, 'lib/jruby*.jar' ) ].first,
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
@@ -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
@@ -1,4 +1,4 @@
1
1
  module JRubyJars
2
- VERSION = '9.0.0.0.pre1'
3
- MAVEN_VERSION = '9.0.0.0.pre1'
2
+ VERSION = '9.0.0.0.pre2'
3
+ MAVEN_VERSION = '9.0.0.0.pre2'
4
4
  end
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.pre1
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-01-20 00:00:00.000000000 Z
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.pre1.jar
28
- - lib/jruby-stdlib-9.0.0.0.pre1.jar
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: