jsparrow 1.1.3 → 1.1.4

Sign up to get free protection for your applications and to get access to all the features.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jsparrow
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.3
4
+ version: 1.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leandro Silva
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-03-01 00:00:00 -08:00
12
+ date: 2010-03-07 00:00:00 -08:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -27,16 +27,20 @@ files:
27
27
  - README.rdoc
28
28
  - Rakefile
29
29
  - VERSION.yml
30
- - lib/client.rb
31
30
  - lib/connection.rb
31
+ - lib/connection/configuration.rb
32
+ - lib/connection/provider.rb
32
33
  - lib/error.rb
33
- - lib/jms.rb
34
- - lib/jms/javaee-1.5.jar
35
- - lib/jms/jms.jar
36
- - lib/jms/jsparrow-essential.jar
34
+ - lib/interaction.rb
35
+ - lib/interaction/client.rb
36
+ - lib/interaction/interactors.rb
37
+ - lib/interaction/listener.rb
38
+ - lib/interaction/messaging.rb
39
+ - lib/javaee.rb
40
+ - lib/javaee/javaee-1.5.jar
41
+ - lib/javaee/jms.jar
42
+ - lib/javaee/jsparrow-essential.jar
37
43
  - lib/jsparrow.rb
38
- - lib/listener.rb
39
- - lib/messaging.rb
40
44
  - sample/sample_queue.rb
41
45
  - sample/sample_topic.rb
42
46
  - spec/client_spec.rb
data/lib/jms.rb DELETED
@@ -1,14 +0,0 @@
1
- # Libs directory definition
2
- JEE_LIB_DIR = File.expand_path(File.dirname(__FILE__)) + '/jms'
3
-
4
- # Befor all, the fundamental require for us
5
- require 'java'
6
-
7
- # Lib to JMS integration (contain the META-INF/applicationContext.xml)
8
- require "#{JEE_LIB_DIR}/jsparrow-essential.jar"
9
-
10
- # Java EE
11
- require "#{JEE_LIB_DIR}/javaee-1.5.jar"
12
-
13
- # JMS API
14
- require "#{JEE_LIB_DIR}/jms.jar"