jruby-jars 1.3.1 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +2 -4
- data/Manifest.txt +3 -3
- data/README.txt +13 -8
- data/lib/{jruby-core-1.3.1.jar → jruby-core-1.4.0.jar} +0 -0
- data/lib/jruby-jars/version.rb +1 -1
- data/lib/jruby-stdlib-1.4.0.jar +0 -0
- metadata +55 -53
- data/lib/jruby-stdlib-1.3.1.jar +0 -0
data/History.txt
CHANGED
data/Manifest.txt
CHANGED
data/README.txt
CHANGED
@@ -1,25 +1,30 @@
|
|
1
|
-
= jruby
|
1
|
+
= jruby-jars
|
2
2
|
|
3
3
|
http://www.jruby.org
|
4
4
|
|
5
5
|
== DESCRIPTION:
|
6
6
|
|
7
|
-
|
7
|
+
This gem includes the core JRuby code and the JRuby 1.8 stdlib as jar files.
|
8
|
+
It provides a way to have other gems depend on JRuby without including (and
|
9
|
+
freezing to) a specific jruby-complete jar version.
|
8
10
|
|
9
11
|
== FEATURES/PROBLEMS:
|
10
12
|
|
11
|
-
|
12
|
-
|
13
|
+
* JRuby core and JRuby stdlib as jars
|
14
|
+
* a jruby-jars.rb that provides the filesystem paths to those jars
|
13
15
|
|
14
16
|
== SYNOPSIS:
|
15
17
|
|
16
|
-
|
18
|
+
To get the full path to the core and stdlib jars:
|
19
|
+
|
20
|
+
require 'jruby-jars'
|
21
|
+
|
22
|
+
puts JRubyJars.core_jar_path # => path to jruby-core-VERSION.jar
|
23
|
+
puts JRubyJars.stdlib_jar_path # => path to jruby-stdlib-VERSION.jar
|
17
24
|
|
18
25
|
== REQUIREMENTS:
|
19
26
|
|
20
|
-
|
21
|
-
either the JAVA_HOME env var points at that JVM installation or 'java' command
|
22
|
-
is available in PATH.
|
27
|
+
A Ruby implementation with working RubyGems.
|
23
28
|
|
24
29
|
== INSTALL:
|
25
30
|
|
Binary file
|
data/lib/jruby-jars/version.rb
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,75 +1,77 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
|
2
|
+
name: jruby-jars
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.4.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Charles Oliver Nutter
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
3
11
|
|
4
|
-
|
12
|
+
date: 2009-11-02 00:00:00 -06:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: hoe
|
17
|
+
type: :development
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 2.3.3
|
24
|
+
version:
|
25
|
+
description: |-
|
26
|
+
This gem includes the core JRuby code and the JRuby 1.8 stdlib as jar files.
|
27
|
+
It provides a way to have other gems depend on JRuby without including (and
|
28
|
+
freezing to) a specific jruby-complete jar version.
|
29
|
+
email:
|
30
|
+
- headius@headius.com
|
5
31
|
executables: []
|
6
32
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
33
|
+
extensions: []
|
34
|
+
|
35
|
+
extra_rdoc_files:
|
36
|
+
- History.txt
|
37
|
+
- Manifest.txt
|
38
|
+
- README.txt
|
11
39
|
files:
|
12
40
|
- History.txt
|
13
41
|
- Manifest.txt
|
14
42
|
- README.txt
|
15
|
-
- lib/jruby-jars/version.rb
|
16
43
|
- lib/jruby-jars.rb
|
17
|
-
- lib/jruby-
|
18
|
-
- lib/jruby-
|
19
|
-
|
20
|
-
rdoc_options:
|
21
|
-
- --main
|
22
|
-
- README.txt
|
23
|
-
signing_key:
|
24
|
-
cert_chain: []
|
25
|
-
|
26
|
-
name: jruby-jars
|
44
|
+
- lib/jruby-jars/version.rb
|
45
|
+
- lib/jruby-core-1.4.0.jar
|
46
|
+
- lib/jruby-stdlib-1.4.0.jar
|
27
47
|
has_rdoc: true
|
28
|
-
|
29
|
-
summary: JRuby is an implementation of the Ruby language atop the Java virtual machine.
|
30
|
-
default_executable:
|
31
|
-
bindir: bin
|
48
|
+
homepage: http://www.jruby.org
|
32
49
|
licenses: []
|
33
50
|
|
34
|
-
|
35
|
-
|
51
|
+
post_install_message:
|
52
|
+
rdoc_options:
|
53
|
+
- --main
|
54
|
+
- README.txt
|
55
|
+
require_paths:
|
56
|
+
- lib
|
57
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
36
58
|
requirements:
|
37
|
-
- -
|
59
|
+
- - ">="
|
38
60
|
- !ruby/object:Gem::Version
|
39
61
|
version: "0"
|
40
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
41
62
|
version:
|
63
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
42
64
|
requirements:
|
43
|
-
- -
|
65
|
+
- - ">="
|
44
66
|
- !ruby/object:Gem::Version
|
45
67
|
version: "0"
|
46
|
-
|
47
|
-
- lib
|
48
|
-
specification_version: 3
|
49
|
-
test_files: []
|
50
|
-
|
51
|
-
dependencies:
|
52
|
-
- !ruby/object:Gem::Dependency
|
53
|
-
type: :development
|
54
|
-
name: hoe
|
55
|
-
version_requirement:
|
56
|
-
version_requirements: !ruby/object:Gem::Requirement
|
57
|
-
version:
|
58
|
-
requirements:
|
59
|
-
- - '>='
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: 2.3.3
|
62
|
-
description: JRuby is an implementation of the Ruby language atop the Java virtual
|
63
|
-
machine.
|
64
|
-
email:
|
65
|
-
- charles.nutter@sun.com
|
66
|
-
authors:
|
67
|
-
- Charles Oliver Nutter
|
68
|
-
extra_rdoc_files:
|
69
|
-
- History.txt
|
70
|
-
- Manifest.txt
|
71
|
-
- README.txt
|
68
|
+
version:
|
72
69
|
requirements: []
|
73
70
|
|
74
71
|
rubyforge_project: jruby-extras
|
75
|
-
|
72
|
+
rubygems_version: 1.3.5
|
73
|
+
signing_key:
|
74
|
+
specification_version: 3
|
75
|
+
summary: This gem includes the core JRuby code and the JRuby 1.8 stdlib as jar files
|
76
|
+
test_files: []
|
77
|
+
|
data/lib/jruby-stdlib-1.3.1.jar
DELETED
Binary file
|