rjack-jms 1.1.0-java → 1.1.1-java

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,7 @@
1
+ === 1.1.1 (2012-9-15)
2
+ * Upgrade/broaden to slf4j [1.6.5,1.8), logback ~> 1.2 (dev)
3
+ * Upgrade to tarpit ~> 2.0 (dev)
4
+
1
5
  === 1.1.0 (2011-3-10)
2
6
  * Added JMSConnector and ConnectListener for JMS (re-)connect.
3
7
  * Added SessionExecutor, SessionStateFactory, SessionTask for client
@@ -10,4 +10,4 @@ test/mocks.rb
10
10
  test/setup.rb
11
11
  test/test_executor.rb
12
12
  test/test_jms_connector.rb
13
- lib/rjack-jms/rjack-jms-1.1.0.jar
13
+ lib/rjack-jms/rjack-jms-1.1.1.jar
data/NOTICE.txt CHANGED
@@ -1,2 +1,2 @@
1
1
  rjack-jms gem
2
- Copyright (c) 2011 David Kellum
2
+ Copyright (c) 2011-2012 David Kellum
@@ -1,7 +1,8 @@
1
1
  = rjack-jms
2
2
 
3
+ * http://rjack.rubyforge.org/jms
3
4
  * http://rjack.rubyforge.org
4
- * http://rubyforge.org/projects/rjack
5
+ * https://github.com/dekellum/rjack
5
6
 
6
7
  == Description
7
8
 
@@ -11,7 +12,7 @@ Java Messaging Service (JMS) utilities, with gem packaging.
11
12
 
12
13
  === rjack-jms
13
14
 
14
- Copyright (c) 2011 David Kellum
15
+ Copyright (c) 2011-2012 David Kellum
15
16
 
16
17
  Licensed under the Apache License, Version 2.0 (the "License"); you
17
18
  may not use this file except in compliance with the License. You
data/Rakefile CHANGED
@@ -1,44 +1,12 @@
1
1
  # -*- ruby -*-
2
2
 
3
- $LOAD_PATH << './lib'
4
- require 'rjack-jms/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-jms', JMS::VERSION,
13
- :no_assembly, :java_platform )
14
-
15
- t.specify do |h|
16
- h.developer( "David Kellum", "dek-oss@gravitext.com" )
17
- h.extra_deps += [ [ 'rjack-slf4j', '>= 1.5.8', '< 1.7' ],
18
- [ 'rjack-jms-spec', '~> 1.1.1' ] ]
19
- h.rdoc_locations << "dekellum@rubyforge.org:/var/www/gforge-projects/rjack/jms"
20
-
21
- h.testlib = :minitest
22
- h.extra_dev_deps += [ [ 'rjack-logback', '>= 0.9.18', '< 2.0' ],
23
- [ 'minitest', '>= 1.7.1', '< 2.1' ] ]
24
- end
25
-
26
- file 'Manifest.txt' => [ "lib/#{t.name}/base.rb" ]
7
+ RJack::TarPit.new( 'rjack-jms' ) do |tp|
27
8
 
28
- task :check_pom_deps do
29
- t.test_line_match( 'pom.xml',
30
- %r[<version>#{ JMS::VERSION }</version>] )
31
- end
9
+ tp.rdoc_destinations <<
10
+ 'dekellum@rubyforge.org:/var/www/gforge-projects/rjack/jms'
32
11
 
33
- task :check_history_version do
34
- t.test_line_match( 'History.rdoc', /^==/, / #{t.version} / )
35
- end
36
- task :check_history_date do
37
- t.test_line_match( 'History.rdoc', /^==/, /\([0-9\-]+\)$/ )
38
12
  end
39
-
40
- task :gem => [ :check_pom_deps, :check_history_version ]
41
- task :tag => [ :check_pom_deps, :check_history_version, :check_history_date ]
42
- task :push => [ :check_history_date ]
43
-
44
- t.define_tasks
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2011 David Kellum
2
+ # Copyright (c) 2011-2012 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2011 David Kellum
2
+ # Copyright (c) 2011-2012 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You
@@ -16,6 +16,6 @@
16
16
 
17
17
  module RJack
18
18
  module JMS
19
- VERSION = '1.1.0'
19
+ VERSION = '1.1.1'
20
20
  end
21
21
  end
data/pom.xml CHANGED
@@ -4,9 +4,13 @@
4
4
  <groupId>rjack</groupId>
5
5
  <artifactId>rjack-jms</artifactId>
6
6
  <packaging>jar</packaging>
7
- <version>1.1.0</version>
7
+ <version>1.1.1</version>
8
8
  <name>Java Message Service Utilizes</name>
9
9
 
10
+ <properties>
11
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12
+ </properties>
13
+
10
14
  <developers>
11
15
  <developer>
12
16
  <id>david</id>
@@ -51,7 +55,7 @@
51
55
  <dependency>
52
56
  <groupId>org.slf4j</groupId>
53
57
  <artifactId>slf4j-api</artifactId>
54
- <version>[1.6.1,1.7)</version>
58
+ <version>[1.6.5,1.7.9999]</version>
55
59
  <scope>compile</scope>
56
60
  </dependency>
57
61
 
@@ -62,9 +66,10 @@
62
66
 
63
67
  <plugin>
64
68
  <artifactId>maven-compiler-plugin</artifactId>
69
+ <version>2.3.2</version>
65
70
  <configuration>
66
- <source>1.5</source>
67
- <target>1.5</target>
71
+ <source>1.6</source>
72
+ <target>1.6</target>
68
73
  <optimize>true</optimize>
69
74
  <debug>true</debug>
70
75
  <encoding>UTF-8</encoding>
@@ -75,6 +80,7 @@
75
80
 
76
81
  <plugin>
77
82
  <artifactId>maven-source-plugin</artifactId>
83
+ <version>2.1.2</version>
78
84
  <executions>
79
85
  <execution>
80
86
  <goals>
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2011 David Kellum
2
+ # Copyright (c) 2011-2012 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You may
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2011 David Kellum
2
+ # Copyright (c) 2011-2012 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You may
@@ -16,13 +16,12 @@
16
16
 
17
17
  #### General test setup: LOAD_PATH, logging, console output ####
18
18
 
19
- test_dir = File.dirname( __FILE__ )
20
- ldir = File.join( test_dir, "..", "lib" )
21
- $LOAD_PATH.unshift( ldir ) unless $LOAD_PATH.include?( ldir )
19
+ require 'rubygems'
20
+ require 'bundler/setup'
22
21
 
22
+ test_dir = File.dirname( __FILE__ )
23
23
  $LOAD_PATH.unshift( test_dir ) unless $LOAD_PATH.include?( test_dir )
24
24
 
25
- require 'rubygems'
26
25
  require 'rjack-logback'
27
26
 
28
27
  require 'rjack-jms'
@@ -32,7 +31,7 @@ require 'minitest/autorun'
32
31
 
33
32
  RJack::Logback.config_console( :stderr => true )
34
33
 
35
- if ARGV.include?( '-v' ) || ARGV.include?( '-verbose' )
34
+ if ARGV.include?( '-v' ) || ARGV.include?( '--verbose' )
36
35
 
37
36
  RJack::Logback.root.level = RJack::Logback::DEBUG
38
37
  RJack::Logback[ 'rjack.jms.JMSConnector' ].level = RJack::Logback::INFO
@@ -1,7 +1,8 @@
1
1
  #!/usr/bin/env jruby
2
2
  #.hashdot.profile += jruby-shortlived
3
+
3
4
  #--
4
- # Copyright (c) 2011 David Kellum
5
+ # Copyright (c) 2011-2012 David Kellum
5
6
  #
6
7
  # Licensed under the Apache License, Version 2.0 (the "License"); you
7
8
  # may not use this file except in compliance with the License. You
@@ -1,7 +1,8 @@
1
1
  #!/usr/bin/env jruby
2
2
  #.hashdot.profile += jruby-shortlived
3
+
3
4
  #--
4
- # Copyright (c) 2011 David Kellum
5
+ # Copyright (c) 2011-2012 David Kellum
5
6
  #
6
7
  # Licensed under the Apache License, Version 2.0 (the "License"); you
7
8
  # may not use this file except in compliance with the License. You
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: rjack-jms
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.1.0
5
+ version: 1.1.1
6
6
  platform: java
7
7
  authors:
8
8
  - David Kellum
@@ -10,74 +10,67 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-03-10 00:00:00 -08:00
14
- default_executable:
13
+ date: 2012-09-15 00:00:00 Z
15
14
  dependencies:
16
15
  - !ruby/object:Gem::Dependency
17
16
  name: rjack-slf4j
18
- prerelease: false
19
- requirement: &id001 !ruby/object:Gem::Requirement
17
+ version_requirements: &id001 !ruby/object:Gem::Requirement
20
18
  none: false
21
19
  requirements:
22
20
  - - ">="
23
21
  - !ruby/object:Gem::Version
24
- version: 1.5.8
22
+ version: 1.6.5
25
23
  - - <
26
24
  - !ruby/object:Gem::Version
27
- version: "1.7"
25
+ version: "1.8"
26
+ requirement: *id001
27
+ prerelease: false
28
28
  type: :runtime
29
- version_requirements: *id001
30
29
  - !ruby/object:Gem::Dependency
31
30
  name: rjack-jms-spec
32
- prerelease: false
33
- requirement: &id002 !ruby/object:Gem::Requirement
31
+ version_requirements: &id002 !ruby/object:Gem::Requirement
34
32
  none: false
35
33
  requirements:
36
34
  - - ~>
37
35
  - !ruby/object:Gem::Version
38
36
  version: 1.1.1
37
+ requirement: *id002
38
+ prerelease: false
39
39
  type: :runtime
40
- version_requirements: *id002
41
40
  - !ruby/object:Gem::Dependency
42
41
  name: rjack-logback
43
- prerelease: false
44
- requirement: &id003 !ruby/object:Gem::Requirement
42
+ version_requirements: &id003 !ruby/object:Gem::Requirement
45
43
  none: false
46
44
  requirements:
47
- - - ">="
48
- - !ruby/object:Gem::Version
49
- version: 0.9.18
50
- - - <
45
+ - - ~>
51
46
  - !ruby/object:Gem::Version
52
- version: "2.0"
47
+ version: "1.2"
48
+ requirement: *id003
49
+ prerelease: false
53
50
  type: :development
54
- version_requirements: *id003
55
51
  - !ruby/object:Gem::Dependency
56
52
  name: minitest
57
- prerelease: false
58
- requirement: &id004 !ruby/object:Gem::Requirement
53
+ version_requirements: &id004 !ruby/object:Gem::Requirement
59
54
  none: false
60
55
  requirements:
61
- - - ">="
62
- - !ruby/object:Gem::Version
63
- version: 1.7.1
64
- - - <
56
+ - - ~>
65
57
  - !ruby/object:Gem::Version
66
- version: "2.1"
58
+ version: "2.2"
59
+ requirement: *id004
60
+ prerelease: false
67
61
  type: :development
68
- version_requirements: *id004
69
62
  - !ruby/object:Gem::Dependency
70
63
  name: rjack-tarpit
71
- prerelease: false
72
- requirement: &id005 !ruby/object:Gem::Requirement
64
+ version_requirements: &id005 !ruby/object:Gem::Requirement
73
65
  none: false
74
66
  requirements:
75
67
  - - ~>
76
68
  - !ruby/object:Gem::Version
77
- version: 1.3.0
69
+ version: "2.0"
70
+ requirement: *id005
71
+ prerelease: false
78
72
  type: :development
79
- version_requirements: *id005
80
- description: Java Messaging Service (JMS) utilities, with gem packaging.
73
+ description:
81
74
  email:
82
75
  - dek-oss@gravitext.com
83
76
  executables: []
@@ -85,8 +78,6 @@ executables: []
85
78
  extensions: []
86
79
 
87
80
  extra_rdoc_files:
88
- - Manifest.txt
89
- - NOTICE.txt
90
81
  - History.rdoc
91
82
  - README.rdoc
92
83
  files:
@@ -102,9 +93,8 @@ files:
102
93
  - test/setup.rb
103
94
  - test/test_executor.rb
104
95
  - test/test_jms_connector.rb
105
- - lib/rjack-jms/rjack-jms-1.1.0.jar
106
- has_rdoc: true
107
- homepage: http://rjack.rubyforge.org
96
+ - lib/rjack-jms/rjack-jms-1.1.1.jar
97
+ homepage: http://rjack.rubyforge.org/jms
108
98
  licenses: []
109
99
 
110
100
  post_install_message:
@@ -118,20 +108,25 @@ required_ruby_version: !ruby/object:Gem::Requirement
118
108
  requirements:
119
109
  - - ">="
120
110
  - !ruby/object:Gem::Version
111
+ hash: 2
112
+ segments:
113
+ - 0
121
114
  version: "0"
122
115
  required_rubygems_version: !ruby/object:Gem::Requirement
123
116
  none: false
124
117
  requirements:
125
118
  - - ">="
126
119
  - !ruby/object:Gem::Version
120
+ hash: 2
121
+ segments:
122
+ - 0
127
123
  version: "0"
128
124
  requirements: []
129
125
 
130
- rubyforge_project: rjack-jms
131
- rubygems_version: 1.5.1
126
+ rubyforge_project:
127
+ rubygems_version: 1.8.15
132
128
  signing_key:
133
129
  specification_version: 3
134
130
  summary: Java Messaging Service (JMS) utilities, with gem packaging.
135
- test_files:
136
- - test/test_jms_connector.rb
137
- - test/test_executor.rb
131
+ test_files: []
132
+