jruby-jars 1.7.9 → 1.7.10

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
  SHA1:
3
- metadata.gz: 9926a823d6c64004f87689ef0154a671ae42a562
4
- data.tar.gz: 7cb4a3957fc39acd1e926983d65b0146b7913809
3
+ metadata.gz: 6e54471f55e67433a67d682f48054c1c457d70fe
4
+ data.tar.gz: e0df43bd30457bac66d5349867582276b9dd1c76
5
5
  SHA512:
6
- metadata.gz: ac15f8c96acdf9bd2a419f7d55a0921c14af6335edfd8b86316c856582cc593175afe33cb7a1bd6dc334c2fefe35cc71097737c9a96d9ec7656016a2636b637f
7
- data.tar.gz: bca39f2ba2168675a5cbdcd08a2171d0fe6ba0a7bf8459a21b782435b9d600019a8a72b7862b4cabb9e8b2d64155a933fc81408fa064a23c6139f3452521be27
6
+ metadata.gz: 9ee4a4f0b53c34d7b7637112da560ce00a9e1c0c1261565b1999b30c83375b94d0474b1a8fe104c33d754b5c920fe358953e23f0490d6a43e888059e6905c57a
7
+ data.tar.gz: 049e4013dbdad00ee7213f7a8e7dadaac979843f307c2f76ae7c7c5386f82ec722208e73c2df0f0e0e0558bb0732ee0fbb55f2e84edbed15ef7b7c8350d357cc
data/Mavenfile CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  gemspec :include_jars => true
4
4
 
5
- model.version = model.version.sub(/\.SNAPSHOT/, '-SNAPSHOT')
5
+ model.version = model.version.sub(/\.SNAPSHOT/, '-SNAPSHOT').sub( /-SNAPSHOT-SNAPSHOT/, '-SNAPSHOT' )
6
6
  inherit "org.jruby:jruby-artifacts:#{model.version}"
7
7
 
8
8
  name "JRuby Jars Gem"
@@ -20,9 +20,10 @@ plugin( :clean, '2.5' ) do
20
20
  end
21
21
 
22
22
  properties( 'tesla.dump.pom' => 'pom.xml',
23
- 'tesla.dump.readonly' => true )
23
+ 'tesla.dump.readonly' => true,
24
+ 'jruby.home' => '${basedir}/../../' )
24
25
 
25
- plugin 'de.saumya.mojo:gem-maven-plugin' do
26
+ jruby_plugin :gem do
26
27
  execute_goals :id => 'default-push', :skip => true
27
28
  end
28
29
 
@@ -31,7 +32,18 @@ execute 'rename gem file', :package do |ctx|
31
32
  require 'fileutils'
32
33
  gem = File.join( ctx.project.build.directory,
33
34
  ctx.project.build.final_name + ".gem" )
34
- FileUtils.mv( gem.sub( /-SNAPSHOT/, '.SNAPSHOT' ), gem ) if gem.match /-SNAPSHOT/
35
+ source = gem.sub( /-SNAPSHOT/, '.SNAPSHOT' )
36
+ FileUtils.mv( source, gem ) if gem.match( /-SNAPSHOT/ ) and File.exists?( source )
35
37
 
36
38
  end
39
+
40
+ plugin( :invoker,
41
+ :projectsDirectory => 'src/it',
42
+ :cloneProjectsTo => '${project.build.directory}/it',
43
+ :postBuildHookScript => 'verify.bsh',
44
+ :streamLogs => true ) do
45
+ execute_goals( :install, :run )
46
+ # :settingsFile => '${basedir}/src/it/settings.xml',
47
+ # :localRepositoryPath => '${project.build.directory}/local-repo' )
48
+ end
37
49
  # vim: syntax=Ruby
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.9
4
+ version: 1.7.10
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: 2013-12-06 00:00:00.000000000 Z
11
+ date: 2014-01-09 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.
@@ -26,8 +26,8 @@ files:
26
26
  - Rakefile
27
27
  - lib/jruby-jars.rb
28
28
  - lib/jruby-jars/version.rb
29
- - lib/jruby-core-complete-1.7.9.jar
30
- - lib/jruby-stdlib-complete-1.7.9.jar
29
+ - lib/jruby-core-complete-1.7.10.jar
30
+ - lib/jruby-stdlib-complete-1.7.10.jar
31
31
  homepage: http://github.com/jruby/jruby/tree/master/gem/jruby-jars
32
32
  licenses: []
33
33
  metadata: {}