jruby-jars 1.7.15 → 1.7.16

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
2
  SHA1:
3
- metadata.gz: 75604b77536e0b44fef1a721be504b264d106bd1
4
- data.tar.gz: eddc08e7be2784d7b61404809c6c68112a1efae3
3
+ metadata.gz: 6b3270fd65867dbff5c3df20c80e96f7da93cfa5
4
+ data.tar.gz: 2368238621a03a63003ca6870c1d4606ebbf3b48
5
5
  SHA512:
6
- metadata.gz: 662f87989c8221c32a8122100613d5b5447d2eedf817706ec29c513832fc074b34283ed9fca43a1a63a3340b7134dcb9f5124c587a6428722b1b3502e7f76661
7
- data.tar.gz: 1a01bf3b6adb0bde37d7111212ad5dd749b070ddd2c0a3cc22c07e2e829850357f71815dee5331078ce871a6b610ab4094e569ce2e1b0009c724cc78bc26d477
6
+ metadata.gz: 86f2dce130408cb6ddfe3eb0b26027bf17b4dc6b2a892fdf087bdb6f8f423b21f43faf72cf38fe9078d9d66cfda83758965ae39ec0121ab9a31b06c44ae04096
7
+ data.tar.gz: eef92f93adb366391b6aa3f3da375b5bf01e061174600412de0f30d645e4de2dd1b092e56fa89ce1aaca2f8670154154ddac2d563664c14b12bb61908561729e
@@ -1,7 +1,6 @@
1
1
  In order to build a new jruby-jars gem, here is the process:
2
2
 
3
- * Run 'rake gem'
3
+ * cd ../../
4
+ * mvn -Pjruby-jars
4
5
 
5
- The 'update' task will update version.rb and create the jar files.
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
- inherit "org.jruby:jruby-artifacts:#{model.version.sub( /.dev$/, '-SNAPSHOT' )}"
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
- #plugin :install, :skip => true
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"])
@@ -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
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.15
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-03 00:00:00.000000000 Z
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.15.jar
30
- - lib/jruby-stdlib-complete-1.7.15.jar
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
@@ -1,4 +0,0 @@
1
- === 1.3.1 / 2009-08-24
2
-
3
- * JRuby 1.3.1 version, and initial gem release
4
-
data/Rakefile DELETED
@@ -1,7 +0,0 @@
1
- #-*- mode: ruby -*-
2
-
3
- require 'maven/ruby/tasks'
4
-
5
- task :default => :build
6
-
7
- # vim: syntax=Ruby