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.
@@ -1,6 +1,4 @@
1
- === 1.0.0 / 2008-08-17
1
+ === 1.3.1 / 2009-08-24
2
2
 
3
- * 1 major enhancement
4
-
5
- * Birthday!
3
+ * JRuby 1.3.1 version, and initial gem release
6
4
 
@@ -1,7 +1,7 @@
1
1
  History.txt
2
2
  Manifest.txt
3
3
  README.txt
4
- lib/jruby-jars/version.rb
5
4
  lib/jruby-jars.rb
6
- lib/jruby-core-1.3.1.jar
7
- lib/jruby-stdlib-1.3.1.jar
5
+ lib/jruby-jars/version.rb
6
+ lib/jruby-core-1.4.0.jar
7
+ lib/jruby-stdlib-1.4.0.jar
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
- JRuby is an implementation of the Ruby language atop the Java virtual machine.
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
- This is the initial release of JRuby as a gem. The version number does not yet
12
- reflect the actual JRuby version packaged for now, but it may in the future.
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
- The gem installs a 'jruby' command that runs JRuby. Otherwise it acts like Ruby.
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
- The only requirement is that you have a JVM available on the system, and that
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
 
@@ -1,3 +1,3 @@
1
1
  module JRubyJars
2
- VERSION = '1.3.1'
2
+ VERSION = '1.4.0'
3
3
  end
metadata CHANGED
@@ -1,75 +1,77 @@
1
1
  --- !ruby/object:Gem::Specification
2
- extensions: []
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
- homepage: http://www.jruby.org
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
- version: !ruby/object:Gem::Version
8
- version: 1.3.1
9
- post_install_message:
10
- date: 2009-08-24 05:00:00 +00:00
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-core-1.3.1.jar
18
- - lib/jruby-stdlib-1.3.1.jar
19
- rubygems_version: 1.3.3
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
- platform: ruby
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
- required_rubygems_version: !ruby/object:Gem::Requirement
35
- version:
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
- require_paths:
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
- autorequire:
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
+
Binary file