jruby-jars 1.7.13 → 1.7.14
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 +10 -12
- data/lib/jruby-jars.rb +2 -2
- data/lib/jruby-jars/version.rb +3 -2
- metadata +6 -5
- data/lib/jruby-core-complete-1.7.13.jar +0 -0
- data/lib/jruby-stdlib-complete-1.7.13.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: d1315cfebffed7c38f0b6ea3353ef4c650452240
|
|
4
|
+
data.tar.gz: 4c65ab9023cc12ee8520e06b0f6a2c8369102f73
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b9d8baba9f6026223939f0c62e4a6dc015dae885b4080222559162ae9230d9b973c9658a9b664c79018b1e29a3e2307032131deb3a745dcde47f5e80e8a7b460
|
|
7
|
+
data.tar.gz: 109bd70af78e94edd9027a5de1e105f58ac9245a251f7c77f2a67e877236a649092f023b79f7b54af2c7128c8448d189eed47770a1974862e1e6957c40f03c50
|
data/Mavenfile
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
#-*- mode: ruby -*-
|
|
2
|
+
gemspec
|
|
2
3
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
model.version = model.version.sub(/\.SNAPSHOT/, '-SNAPSHOT').sub( /-SNAPSHOT-SNAPSHOT/, '-SNAPSHOT' )
|
|
6
|
-
inherit "org.jruby:jruby-artifacts:#{model.version}"
|
|
4
|
+
inherit "org.jruby:jruby-artifacts:#{model.version.sub( /.dev$/, '-SNAPSHOT' )}"
|
|
7
5
|
|
|
8
6
|
name "JRuby Jars Gem"
|
|
9
7
|
|
|
@@ -20,21 +18,21 @@ plugin( :clean, '2.5' ) do
|
|
|
20
18
|
end
|
|
21
19
|
|
|
22
20
|
properties( 'tesla.dump.pom' => 'pom.xml',
|
|
23
|
-
'tesla.dump.
|
|
21
|
+
'tesla.dump.readOnly' => true,
|
|
24
22
|
'jruby.home' => '${basedir}/../../' )
|
|
25
23
|
|
|
26
|
-
jruby_plugin :gem
|
|
24
|
+
jruby_plugin!( :gem,
|
|
25
|
+
:gemspec => 'jruby-jars.gemspec',
|
|
26
|
+
:includeDependencies => true ) do
|
|
27
27
|
execute_goals :id => 'default-push', :skip => true
|
|
28
28
|
end
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
plugin :install, :skip => true
|
|
31
31
|
|
|
32
|
+
execute 'rename gem file', :package do |ctx|
|
|
32
33
|
require 'fileutils'
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
source = gem.sub( /-SNAPSHOT/, '.SNAPSHOT' )
|
|
36
|
-
FileUtils.mv( source, gem ) if gem.match( /-SNAPSHOT/ ) and File.exists?( source )
|
|
37
|
-
|
|
34
|
+
FileUtils.rm_rf(Dir["#{ctx.project.build.directory}/*.gem"])
|
|
35
|
+
FileUtils.mv(Dir["#{ctx.project.basedir}/*.gem"], ctx.project.build.directory)
|
|
38
36
|
end
|
|
39
37
|
|
|
40
38
|
plugin( :invoker,
|
data/lib/jruby-jars.rb
CHANGED
|
@@ -4,10 +4,10 @@ module JRubyJars
|
|
|
4
4
|
PATH = File.expand_path(File.dirname(__FILE__))
|
|
5
5
|
|
|
6
6
|
def self.core_jar_path
|
|
7
|
-
|
|
7
|
+
"#{PATH}/jruby-core-complete-#{JRubyJars::MAVEN_VERSION}.jar"
|
|
8
8
|
end
|
|
9
9
|
|
|
10
10
|
def self.stdlib_jar_path
|
|
11
|
-
|
|
11
|
+
"#{PATH }/jruby-stdlib-complete-#{JRubyJars::MAVEN_VERSION}.jar"
|
|
12
12
|
end
|
|
13
13
|
end
|
data/lib/jruby-jars/version.rb
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
module JRubyJars
|
|
2
|
-
|
|
3
|
-
first.gsub(
|
|
2
|
+
MAVEN_VERSION = Dir[File.expand_path(File.dirname(File.dirname(__FILE__))) + '/jruby-core-complete-*jar' ].
|
|
3
|
+
first.gsub(/^.*jruby-core-complete-|.jar$/, '')
|
|
4
|
+
VERSION = MAVEN_VERSION.sub('-SNAPSHOT', '').gsub('-', '.')
|
|
4
5
|
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: 1.7.
|
|
4
|
+
version: 1.7.14
|
|
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: 2014-
|
|
11
|
+
date: 2014-08-27 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.
|
|
@@ -26,10 +26,11 @@ files:
|
|
|
26
26
|
- Rakefile
|
|
27
27
|
- lib/jruby-jars.rb
|
|
28
28
|
- lib/jruby-jars/version.rb
|
|
29
|
-
- lib/jruby-core-complete-1.7.13.jar
|
|
30
|
-
- lib/jruby-stdlib-complete-1.7.13.jar
|
|
31
29
|
homepage: http://github.com/jruby/jruby/tree/master/gem/jruby-jars
|
|
32
|
-
licenses:
|
|
30
|
+
licenses:
|
|
31
|
+
- EPL-1.0
|
|
32
|
+
- GPL-2.0
|
|
33
|
+
- LGPL-2.1
|
|
33
34
|
metadata: {}
|
|
34
35
|
post_install_message:
|
|
35
36
|
rdoc_options: []
|
|
Binary file
|
|
Binary file
|