jruby-hornetq 0.3.0.alpha → 0.3.1
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.
- data/README.md +8 -18
- data/Rakefile +1 -1
- data/lib/hornetq/server.rb +1 -1
- metadata +7 -10
data/README.md
CHANGED
|
@@ -274,33 +274,27 @@ Contributing
|
|
|
274
274
|
|
|
275
275
|
Once you've made your great commits:
|
|
276
276
|
|
|
277
|
-
1. [Fork]
|
|
277
|
+
1. [Fork](http://help.github.com/forking/) jruby-hornetq
|
|
278
278
|
2. Create a topic branch - `git checkout -b my_branch`
|
|
279
279
|
3. Push to your branch - `git push origin my_branch`
|
|
280
|
-
4. Create an [Issue]
|
|
280
|
+
4. Create an [Issue](http://github.com/reidmorrison/jruby-hornetq/issues) with a link to your branch
|
|
281
281
|
5. That's it!
|
|
282
282
|
|
|
283
283
|
You might want to checkout our [Contributing][cb] wiki page for information
|
|
284
284
|
on coding standards, new features, etc.
|
|
285
285
|
|
|
286
286
|
|
|
287
|
-
Mailing List
|
|
288
|
-
------------
|
|
289
|
-
|
|
290
|
-
TBA
|
|
291
|
-
|
|
292
287
|
Meta
|
|
293
288
|
----
|
|
294
289
|
|
|
295
|
-
* Code: `git clone git://github.com/
|
|
296
|
-
* Home: <
|
|
297
|
-
* Docs: <http://
|
|
290
|
+
* Code: `git clone git://github.com/ClarityServices/jruby-hornetq.git`
|
|
291
|
+
* Home: <https://github.com/ClarityServices/jruby-hornetq>
|
|
292
|
+
* Docs: TODO <http://ClarityServices.github.com/jruby-hornetq/>
|
|
298
293
|
* Bugs: <http://github.com/reidmorrison/jruby-hornetq/issues>
|
|
299
|
-
* List:
|
|
300
|
-
* Gems: <http://
|
|
301
|
-
|
|
302
|
-
This project uses [Semantic Versioning][sv].
|
|
294
|
+
* List: TODO
|
|
295
|
+
* Gems: <http://rubygems.org/gems/jruby-hornetq>
|
|
303
296
|
|
|
297
|
+
This project uses [Semantic Versioning](http://semver.org/).
|
|
304
298
|
|
|
305
299
|
Authors
|
|
306
300
|
-------
|
|
@@ -309,10 +303,6 @@ Reid Morrison :: rubywmq@gmail.com :: @reidmorrison
|
|
|
309
303
|
|
|
310
304
|
Brad Pardee :: bpardee@gmail.com
|
|
311
305
|
|
|
312
|
-
[1]: http://help.github.com/forking/
|
|
313
|
-
[2]: http://github.com/reidmorrison/jruby-hornetq/issues
|
|
314
|
-
[sv]: http://semver.org/
|
|
315
|
-
|
|
316
306
|
License
|
|
317
307
|
-------
|
|
318
308
|
|
data/Rakefile
CHANGED
|
@@ -9,7 +9,7 @@ desc "Build gem"
|
|
|
9
9
|
task :gem do |t|
|
|
10
10
|
gemspec = Gem::Specification.new do |s|
|
|
11
11
|
s.name = 'jruby-hornetq'
|
|
12
|
-
s.version = '0.3.
|
|
12
|
+
s.version = '0.3.1'
|
|
13
13
|
s.authors = ['Reid Morrison', 'Brad Pardee']
|
|
14
14
|
s.email = ['rubywmq@gmail.com', 'bpardee@gmail.com']
|
|
15
15
|
s.homepage = 'https://github.com/ClarityServices/jruby-hornetq'
|
data/lib/hornetq/server.rb
CHANGED
|
@@ -46,7 +46,7 @@ module HornetQ
|
|
|
46
46
|
else
|
|
47
47
|
require 'rbconfig'
|
|
48
48
|
if Config::CONFIG['target_os'] == 'linux'
|
|
49
|
-
HornetQ.logger("AIO wasn't located on this platform, it will fall back to using pure Java NIO. Install LibAIO to enable the AIO journal")
|
|
49
|
+
HornetQ.logger.info("AIO wasn't located on this platform, it will fall back to using pure Java NIO. Install LibAIO to enable the AIO journal")
|
|
50
50
|
end
|
|
51
51
|
config.journal_type = Java::org.hornetq.core.server.JournalType::NIO
|
|
52
52
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jruby-hornetq
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
prerelease:
|
|
4
|
+
prerelease: false
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 3
|
|
8
|
-
-
|
|
9
|
-
|
|
10
|
-
version: 0.3.0.alpha
|
|
8
|
+
- 1
|
|
9
|
+
version: 0.3.1
|
|
11
10
|
platform: ruby
|
|
12
11
|
authors:
|
|
13
12
|
- Reid Morrison
|
|
@@ -16,7 +15,7 @@ autorequire:
|
|
|
16
15
|
bindir: bin
|
|
17
16
|
cert_chain: []
|
|
18
17
|
|
|
19
|
-
date: 2011-02-
|
|
18
|
+
date: 2011-02-23 00:00:00 -05:00
|
|
20
19
|
default_executable:
|
|
21
20
|
dependencies:
|
|
22
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -128,13 +127,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
128
127
|
version: "0"
|
|
129
128
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
130
129
|
requirements:
|
|
131
|
-
- - "
|
|
130
|
+
- - ">="
|
|
132
131
|
- !ruby/object:Gem::Version
|
|
133
132
|
segments:
|
|
134
|
-
-
|
|
135
|
-
|
|
136
|
-
- 1
|
|
137
|
-
version: 1.3.1
|
|
133
|
+
- 0
|
|
134
|
+
version: "0"
|
|
138
135
|
requirements: []
|
|
139
136
|
|
|
140
137
|
rubyforge_project:
|