jruby-jars 10.0.2.0 → 10.0.3.0
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e11e9adbc0c1395d64c9f11157e5fb852c3d97e0132c6291d52f0e3d6da0a34e
|
|
4
|
+
data.tar.gz: 76ae0925eaeea55ebd936023424841774cfb3e03879fbcf67d23057a1c7a672b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e8ffe41ce292c1cd33c1c111bed00abea8b9aa9866e6f129775b3e912b877077beffcd728002e5418702f674aa020d73f9b3e5f6da52bb05b99f392bd0c44d63
|
|
7
|
+
data.tar.gz: 1862ce89465ee518b5190149c2959b5ce7fad0a288fb205622544fbe6147ba4c04fd910634cc95f7e55f8c7268fbce9288e78ed4f84a7563a0f16a700c642749
|
data/README.txt
CHANGED
|
@@ -35,7 +35,7 @@ Install like any other gem.
|
|
|
35
35
|
To run an instance of JRuby core without stdlib, you can do the following:
|
|
36
36
|
|
|
37
37
|
require 'jruby-jars'
|
|
38
|
-
exec("java", "-cp", JRubyJars.core_jar_path, "org.jruby.Main")
|
|
38
|
+
exec("java", "-cp", JRubyJars.core_jar_path, "org.jruby.main.Main")
|
|
39
39
|
|
|
40
40
|
If you need access to the standard library as well, then you can do:
|
|
41
41
|
|
|
@@ -43,12 +43,12 @@ If you need access to the standard library as well, then you can do:
|
|
|
43
43
|
JRubyJars.core_jar_path,
|
|
44
44
|
JRubyJars.stdlib_jar_path
|
|
45
45
|
].join(File::PATH_SEPARATOR)
|
|
46
|
-
exec("java", "-cp", classpath, "org.jruby.Main")
|
|
46
|
+
exec("java", "-cp", classpath, "org.jruby.main.Main")
|
|
47
47
|
|
|
48
48
|
Building on this this, then, you could build a cross-platform way to execute
|
|
49
49
|
commands with jruby:
|
|
50
50
|
|
|
51
|
-
args = ["-cp", classpath, "org.jruby.Main"] + ARGV
|
|
51
|
+
args = ["-cp", classpath, "org.jruby.main.Main"] + ARGV
|
|
52
52
|
exec("java", *args)
|
|
53
53
|
|
|
54
54
|
And call this with:
|
|
Binary file
|
data/lib/jruby-jars/version.rb
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jruby-jars
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 10.0.
|
|
4
|
+
version: 10.0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Charles Oliver Nutter
|
|
@@ -22,10 +22,10 @@ files:
|
|
|
22
22
|
- Mavenfile
|
|
23
23
|
- README.txt
|
|
24
24
|
- jruby-jars.gemspec
|
|
25
|
-
- lib/jruby-core-10.0.
|
|
25
|
+
- lib/jruby-core-10.0.3.0-complete.jar
|
|
26
26
|
- lib/jruby-jars.rb
|
|
27
27
|
- lib/jruby-jars/version.rb
|
|
28
|
-
- lib/jruby-stdlib-10.0.
|
|
28
|
+
- lib/jruby-stdlib-10.0.3.0.jar
|
|
29
29
|
homepage: https://github.com/jruby/jruby/tree/master/maven/jruby-jars
|
|
30
30
|
licenses:
|
|
31
31
|
- EPL-2.0
|
|
@@ -46,7 +46,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
47
|
version: '0'
|
|
48
48
|
requirements: []
|
|
49
|
-
rubygems_version: 3.
|
|
49
|
+
rubygems_version: 3.7.2
|
|
50
50
|
specification_version: 4
|
|
51
51
|
summary: The core JRuby code and the JRuby stdlib as jar files.
|
|
52
52
|
test_files: []
|