jruby-jars 1.7.15 → 1.7.16
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/DEV_INSTRUCTIONS +3 -4
- data/Mavenfile +10 -2
- data/lib/{jruby-core-complete-1.7.15.jar → jruby-core-complete-1.7.16.jar} +0 -0
- data/lib/jruby-jars/version.rb +1 -1
- data/lib/{jruby-stdlib-complete-1.7.15.jar → jruby-stdlib-complete-1.7.16.jar} +0 -0
- metadata +4 -6
- data/History.txt +0 -4
- data/Rakefile +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6b3270fd65867dbff5c3df20c80e96f7da93cfa5
|
4
|
+
data.tar.gz: 2368238621a03a63003ca6870c1d4606ebbf3b48
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86f2dce130408cb6ddfe3eb0b26027bf17b4dc6b2a892fdf087bdb6f8f423b21f43faf72cf38fe9078d9d66cfda83758965ae39ec0121ab9a31b06c44ae04096
|
7
|
+
data.tar.gz: eef92f93adb366391b6aa3f3da375b5bf01e061174600412de0f30d645e4de2dd1b092e56fa89ce1aaca2f8670154154ddac2d563664c14b12bb61908561729e
|
data/DEV_INSTRUCTIONS
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
In order to build a new jruby-jars gem, here is the process:
|
2
2
|
|
3
|
-
*
|
3
|
+
* cd ../../
|
4
|
+
* mvn -Pjruby-jars
|
4
5
|
|
5
|
-
|
6
|
-
You may commit the contents of the version.rb file, but it is not a requirement.
|
7
|
-
However update should always be run before building the gem to ensure the latest code is pulled in.
|
6
|
+
the gem will be in ./pkg directory
|
data/Mavenfile
CHANGED
@@ -1,7 +1,11 @@
|
|
1
1
|
#-*- mode: ruby -*-
|
2
2
|
gemspec
|
3
3
|
|
4
|
-
|
4
|
+
ruby_version = model.version
|
5
|
+
|
6
|
+
inherit "org.jruby:jruby-artifacts:#{ruby_version.sub( /.dev$/, '-SNAPSHOT' )}"
|
7
|
+
|
8
|
+
model.version = nil
|
5
9
|
|
6
10
|
name "JRuby Jars Gem"
|
7
11
|
|
@@ -27,8 +31,12 @@ jruby_plugin!( :gem,
|
|
27
31
|
execute_goals :id => 'default-push', :skip => true
|
28
32
|
end
|
29
33
|
|
30
|
-
|
34
|
+
build do
|
35
|
+
final_name "${project.artifactId}-#{ruby_version}"
|
36
|
+
end
|
31
37
|
|
38
|
+
# TODO remove once gem-maven-plugin honors the final_name
|
39
|
+
plugin :install, :skip => true
|
32
40
|
execute 'rename gem file', :verify do |ctx|
|
33
41
|
require 'fileutils'
|
34
42
|
FileUtils.rm_rf(Dir["#{ctx.project.build.directory}/*.gem"])
|
Binary file
|
data/lib/jruby-jars/version.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
module JRubyJars
|
2
2
|
MAVEN_VERSION = Dir[File.expand_path(File.dirname(File.dirname(__FILE__))) + '/jruby-core-complete-*jar' ].
|
3
3
|
first.gsub(/^.*jruby-core-complete-|.jar$/, '')
|
4
|
-
VERSION = MAVEN_VERSION.sub('-SNAPSHOT', '').gsub('-', '.')
|
4
|
+
VERSION = MAVEN_VERSION.sub('-SNAPSHOT', '.dev').gsub('-', '.')
|
5
5
|
end
|
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: 1.7.
|
4
|
+
version: 1.7.16
|
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-09-
|
11
|
+
date: 2014-09-25 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.
|
@@ -20,14 +20,12 @@ extensions: []
|
|
20
20
|
extra_rdoc_files: []
|
21
21
|
files:
|
22
22
|
- DEV_INSTRUCTIONS
|
23
|
-
- History.txt
|
24
23
|
- Mavenfile
|
25
24
|
- README.txt
|
26
|
-
- Rakefile
|
27
25
|
- lib/jruby-jars.rb
|
28
26
|
- lib/jruby-jars/version.rb
|
29
|
-
- lib/jruby-core-complete-1.7.
|
30
|
-
- lib/jruby-stdlib-complete-1.7.
|
27
|
+
- lib/jruby-core-complete-1.7.16.jar
|
28
|
+
- lib/jruby-stdlib-complete-1.7.16.jar
|
31
29
|
homepage: http://github.com/jruby/jruby/tree/master/gem/jruby-jars
|
32
30
|
licenses:
|
33
31
|
- EPL-1.0
|
data/History.txt
DELETED