rjack-protobuf 2.4.1.0-java → 2.5.0.0-java

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 0522177f85191a0615f9ee50948c53054a7d46d9
4
+ data.tar.gz: 2bbc881d6d7114044abc5109894c1df650ad611b
5
+ SHA512:
6
+ metadata.gz: f3cfdaaa555c853eec1ec59f3168735d94888a8b07aee49cc39ff595ffb9b958496eb4ac86c549e122044754a071a7f3490e5697d105350de0b67f653782ba3c
7
+ data.tar.gz: 2250f98b8b46089664f74e32417b1f18cb7524b56d2d518b9583ef189a57cb720a16f9d41979aea28f28600ef3d58ed80230718606b347f04c3be7481e9ec643
data/History.rdoc CHANGED
@@ -1,3 +1,6 @@
1
+ === 2.5.0.0 (2013-10-11)
2
+ * Upgrade to protobuf-java 2.5.0
3
+
1
4
  === 2.4.1.0 (2011-7-16)
2
5
  * Upgrade to protobuf-java 2.4.1
3
6
 
data/Manifest.txt CHANGED
@@ -7,4 +7,4 @@ pom.xml
7
7
  lib/rjack-protobuf/base.rb
8
8
  lib/rjack-protobuf.rb
9
9
  test/test_protobuf.rb
10
- lib/rjack-protobuf/protobuf-java-2.4.1.jar
10
+ lib/rjack-protobuf/protobuf-java-2.5.0.jar
data/README.rdoc CHANGED
@@ -12,7 +12,7 @@ A gem packaging of {Protocol Buffers}[http://code.google.com/p/protobuf/]
12
12
 
13
13
  === rjack-protobuf
14
14
 
15
- Copyright (c) 2010-2011 David Kellum
15
+ Copyright (c) 2010-2013 David Kellum
16
16
  All rights reserved.
17
17
 
18
18
  Redistribution and use in source and binary forms, with or without
data/Rakefile CHANGED
@@ -1,41 +1,13 @@
1
1
  # -*- ruby -*-
2
2
 
3
- $LOAD_PATH << './lib'
4
- require 'rjack-protobuf/base'
5
-
6
3
  require 'rubygems'
7
- gem 'rjack-tarpit', '~> 1.3.0'
4
+ require 'bundler/setup'
8
5
  require 'rjack-tarpit'
9
6
 
10
- include RJack
11
-
12
- t = TarPit.new( 'rjack-protobuf', ProtoBuf::VERSION, :java_platform )
13
-
14
- t.specify do |h|
15
- h.developer( "David Kellum", "dek-oss@gravitext.com" )
16
- h.rdoc_locations << "dekellum@rubyforge.org:/var/www/gforge-projects/rjack/protobuf"
17
- end
18
-
19
- t.jars = [ "protobuf-java-#{ ProtoBuf::PB_VERSION }.jar" ]
20
-
21
- t.assembly_version = 1.0
7
+ RJack::TarPit.new( 'rjack-protobuf' ) do |tp|
22
8
 
23
- file 'Manifest.txt' => [ "lib/#{t.name}/base.rb" ]
9
+ tp.rdoc_destinations <<
10
+ 'dekellum@rubyforge.org:/var/www/gforge-projects/rjack/protobuf'
11
+ tp.publish_rdoc_rsync_flags = %w[ -rL ]
24
12
 
25
- task :check_pom_deps do
26
- t.test_line_match( 'pom.xml',
27
- %r[<version>#{ ProtoBuf::PB_VERSION }</version>] )
28
13
  end
29
-
30
- task :check_history_version do
31
- t.test_line_match( 'History.rdoc', /^==/, / #{t.version} / )
32
- end
33
- task :check_history_date do
34
- t.test_line_match( 'History.rdoc', /^==/, /\([0-9\-]+\)$/ )
35
- end
36
-
37
- task :gem => [ :check_pom_deps, :check_history_version ]
38
- task :tag => [ :check_pom_deps, :check_history_version, :check_history_date ]
39
- task :push => [ :check_history_date ]
40
-
41
- t.define_tasks
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2010-2011 David Kellum
2
+ # Copyright (c) 2010-2013 David Kellum
3
3
  # All rights reserved.
4
4
  #
5
5
  # Redistribution and use in source and binary forms, with or without
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2010-2011 David Kellum
2
+ # Copyright (c) 2010-2013 David Kellum
3
3
  # All rights reserved.
4
4
  #
5
5
  # Redistribution and use in source and binary forms, with or without
@@ -32,7 +32,7 @@ module RJack
32
32
  module ProtoBuf
33
33
 
34
34
  # Commons pool (java) version
35
- PB_VERSION = '2.4.1'
35
+ PB_VERSION = '2.5.0'
36
36
 
37
37
  # rjack gem version
38
38
  VERSION = PB_VERSION + '.0'
data/pom.xml CHANGED
@@ -15,7 +15,7 @@
15
15
  <dependency>
16
16
  <groupId>com.google.protobuf</groupId>
17
17
  <artifactId>protobuf-java</artifactId>
18
- <version>2.4.1</version>
18
+ <version>2.5.0</version>
19
19
  </dependency>
20
20
  </dependencies>
21
21
 
@@ -2,7 +2,7 @@
2
2
  #.hashdot.profile += jruby-shortlived
3
3
 
4
4
  #--
5
- # Copyright (c) 2010-2011 David Kellum
5
+ # Copyright (c) 2010-2013 David Kellum
6
6
  # All rights reserved.
7
7
  #
8
8
  # Redistribution and use in source and binary forms, with or without
@@ -31,16 +31,19 @@
31
31
  # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32
32
  #++
33
33
 
34
- $LOAD_PATH.unshift File.join( File.dirname(__FILE__), "..", "lib" )
34
+ require 'bundler/setup'
35
+
36
+ require 'minitest/unit'
37
+ require 'minitest/autorun'
35
38
 
36
39
  require 'rjack-protobuf'
37
40
 
38
- require 'test/unit'
41
+ class TestProtobuf < MiniTest::Unit::TestCase
39
42
 
40
- class TestProtobuf < Test::Unit::TestCase
41
43
  import 'com.google.protobuf.Message'
42
44
 
43
45
  def test_load
44
- assert true
46
+ pass
45
47
  end
48
+
46
49
  end
metadata CHANGED
@@ -1,79 +1,85 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: rjack-protobuf
3
- version: !ruby/object:Gem::Version
4
- prerelease:
5
- version: 2.4.1.0
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.5.0.0
6
5
  platform: java
7
- authors:
8
- - David Kellum
9
- autorequire:
6
+ authors:
7
+ - David Kellum
8
+ autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
-
13
- date: 2011-07-16 00:00:00 -07:00
14
- default_executable:
15
- dependencies:
16
- - !ruby/object:Gem::Dependency
17
- name: rjack-tarpit
18
- prerelease: false
19
- requirement: &id001 !ruby/object:Gem::Requirement
20
- none: false
21
- requirements:
22
- - - ~>
23
- - !ruby/object:Gem::Version
24
- version: 1.3.3
25
- type: :development
26
- version_requirements: *id001
27
- description: A gem packaging of {Protocol Buffers}[http://code.google.com/p/protobuf/]
28
- email:
29
- - dek-oss@gravitext.com
11
+ date: 2013-10-11 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: minitest
15
+ version_requirements: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: 4.7.4
20
+ requirement: !ruby/object:Gem::Requirement
21
+ requirements:
22
+ - - ~>
23
+ - !ruby/object:Gem::Version
24
+ version: 4.7.4
25
+ prerelease: false
26
+ type: :development
27
+ - !ruby/object:Gem::Dependency
28
+ name: rjack-tarpit
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '2.0'
34
+ requirement: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ~>
37
+ - !ruby/object:Gem::Version
38
+ version: '2.0'
39
+ prerelease: false
40
+ type: :development
41
+ description:
42
+ email:
43
+ - dek-oss@gravitext.com
30
44
  executables: []
31
-
32
45
  extensions: []
33
-
34
- extra_rdoc_files:
35
- - Manifest.txt
36
- - History.rdoc
37
- - README.rdoc
38
- files:
39
- - History.rdoc
40
- - Manifest.txt
41
- - README.rdoc
42
- - Rakefile
43
- - assembly.xml
44
- - pom.xml
45
- - lib/rjack-protobuf/base.rb
46
- - lib/rjack-protobuf.rb
47
- - test/test_protobuf.rb
48
- - lib/rjack-protobuf/protobuf-java-2.4.1.jar
49
- has_rdoc: true
46
+ extra_rdoc_files:
47
+ - History.rdoc
48
+ - README.rdoc
49
+ files:
50
+ - History.rdoc
51
+ - Manifest.txt
52
+ - README.rdoc
53
+ - Rakefile
54
+ - assembly.xml
55
+ - pom.xml
56
+ - lib/rjack-protobuf/base.rb
57
+ - lib/rjack-protobuf.rb
58
+ - test/test_protobuf.rb
59
+ - lib/rjack-protobuf/protobuf-java-2.5.0.jar
50
60
  homepage: http://rjack.rubyforge.org/protobuf
51
61
  licenses: []
52
-
53
- post_install_message:
54
- rdoc_options:
55
- - --main
56
- - README.rdoc
57
- require_paths:
58
- - lib
59
- required_ruby_version: !ruby/object:Gem::Requirement
60
- none: false
61
- requirements:
62
- - - ">="
63
- - !ruby/object:Gem::Version
64
- version: "0"
65
- required_rubygems_version: !ruby/object:Gem::Requirement
66
- none: false
67
- requirements:
68
- - - ">="
69
- - !ruby/object:Gem::Version
70
- version: "0"
62
+ metadata: {}
63
+ post_install_message:
64
+ rdoc_options:
65
+ - --main
66
+ - README.rdoc
67
+ require_paths:
68
+ - lib
69
+ required_ruby_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - '>='
72
+ - !ruby/object:Gem::Version
73
+ version: '0'
74
+ required_rubygems_version: !ruby/object:Gem::Requirement
75
+ requirements:
76
+ - - '>='
77
+ - !ruby/object:Gem::Version
78
+ version: '0'
71
79
  requirements: []
72
-
73
- rubyforge_project: rjack-protobuf
74
- rubygems_version: 1.5.1
75
- signing_key:
76
- specification_version: 3
77
- summary: A gem packaging of {Protocol Buffers}[http://code.google.com/p/protobuf/]
78
- test_files:
79
- - test/test_protobuf.rb
80
+ rubyforge_project:
81
+ rubygems_version: 2.1.5
82
+ signing_key:
83
+ specification_version: 4
84
+ summary: A gem packaging of Protocol Buffers
85
+ test_files: []