jruby-jars 9.2.21.0 → 9.3.0.0
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
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 45c1ba69682481dc5b17949ec9f0a0e48cc1d34cb90d8fe67bf5bf039f491b5e
|
4
|
+
data.tar.gz: 4211d045daa13f502cb68de5dfe5087335c8d27367258195a17a88688949b32c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f14efbe273b5870b68c2741ace67271e8d4a1c33bd805b1f2f4b977c60d5ba820119115e076a7c098b288a36f5ed07a54bf8a7a2bb104fdc930fa8c8c2ed688
|
7
|
+
data.tar.gz: f6a63161eacedf3817550124b859dd563c6b80f52f4380b04fb854ea8f873c95310c17d210b3040e76a70da01f0bdff355952ae634c610b509a55578f539dbaa
|
data/Mavenfile
CHANGED
@@ -15,6 +15,7 @@ inherit "org.jruby:jruby-artifacts:#{version}"
|
|
15
15
|
name "JRuby Jars Gem"
|
16
16
|
|
17
17
|
jar 'org.jruby:jruby-stdlib', '${project.parent.version}'
|
18
|
+
jar 'org.jruby:jruby-core', '${project.parent.version}', scope: "compile"
|
18
19
|
|
19
20
|
plugin( :clean, '2.5' ) do
|
20
21
|
execute_goals( :clean,
|
@@ -53,7 +54,8 @@ end
|
|
53
54
|
jruby_plugin!( :gem,
|
54
55
|
:gemspec => 'jruby-jars.gemspec',
|
55
56
|
# tell maven to include the jar files into gem
|
56
|
-
:includeDependencies => true
|
57
|
+
:includeDependencies => true,
|
58
|
+
:jrubyVersion => '9.3.0.0-SNAPSHOT') do
|
57
59
|
execute_goals :id => 'default-push', :skip => true
|
58
60
|
end
|
59
61
|
|
data/jruby-jars.gemspec
CHANGED
@@ -27,7 +27,11 @@ Gem::Specification.new do |s|
|
|
27
27
|
s.homepage = 'https://github.com/jruby/jruby/tree/master/maven/jruby-jars'
|
28
28
|
s.description = File.read('README.txt', encoding: 'UTF-8').split(/\n{2,}/)[3]
|
29
29
|
s.licenses = %w(EPL-1.0 GPL-2.0 LGPL-2.1)
|
30
|
-
s.files = Dir['[A-Z]*'] +
|
30
|
+
s.files = Dir['[A-Z]*'] +
|
31
|
+
Dir['lib/**/*.rb'] +
|
32
|
+
Dir[ 'test/**/*'] +
|
33
|
+
[ "lib/jruby-core-#{version}-complete.jar", "lib/jruby-stdlib-#{version}.jar" ] +
|
34
|
+
[ 'jruby-jars.gemspec' ]
|
31
35
|
end
|
32
36
|
|
33
37
|
# vim: syntax=Ruby
|
Binary file
|
data/lib/jruby-jars/version.rb
CHANGED
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.
|
4
|
+
version: 9.3.0.0
|
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:
|
11
|
+
date: 2021-09-17 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |-
|
14
14
|
This gem includes JRuby core and the Ruby standard library as jar files.
|
@@ -23,10 +23,10 @@ files:
|
|
23
23
|
- Mavenfile
|
24
24
|
- README.txt
|
25
25
|
- jruby-jars.gemspec
|
26
|
-
- lib/jruby-core-9.
|
26
|
+
- lib/jruby-core-9.3.0.0-complete.jar
|
27
27
|
- lib/jruby-jars.rb
|
28
28
|
- lib/jruby-jars/version.rb
|
29
|
-
- lib/jruby-stdlib-9.
|
29
|
+
- lib/jruby-stdlib-9.3.0.0.jar
|
30
30
|
homepage: https://github.com/jruby/jruby/tree/master/maven/jruby-jars
|
31
31
|
licenses:
|
32
32
|
- EPL-1.0
|
@@ -39,17 +39,16 @@ require_paths:
|
|
39
39
|
- lib
|
40
40
|
required_ruby_version: !ruby/object:Gem::Requirement
|
41
41
|
requirements:
|
42
|
-
- -
|
42
|
+
- - ">="
|
43
43
|
- !ruby/object:Gem::Version
|
44
44
|
version: '0'
|
45
45
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
|
-
- -
|
47
|
+
- - ">="
|
48
48
|
- !ruby/object:Gem::Version
|
49
49
|
version: '0'
|
50
50
|
requirements: []
|
51
|
-
|
52
|
-
rubygems_version: 2.4.8
|
51
|
+
rubygems_version: 3.2.14
|
53
52
|
signing_key:
|
54
53
|
specification_version: 4
|
55
54
|
summary: The core JRuby code and the JRuby stdlib as jar files.
|