quickfix-jruby 1.5.4-java → 1.6.0-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.md +31 -5
- data/VERSION +1 -1
- data/lib/dom4j-1.6.1.jar +0 -0
- data/lib/jaxen-1.1.4.jar +0 -0
- data/lib/jcl-over-slf4j-1.7.12.jar +0 -0
- data/lib/je-2.1.30.jar +0 -0
- data/lib/mina-core-2.0.9.jar +0 -0
- data/lib/proxool-0.9.1.jar +0 -0
- data/lib/quickfix.rb +9 -4
- data/lib/quickfixj-all-1.6.0.jar +0 -0
- data/lib/slf4j-api-1.7.12.jar +0 -0
- data/lib/slf4j-jdk14-1.7.12.jar +0 -0
- data/quickfix-jruby.gemspec +14 -8
- data/test/tc_quickfix.rb +13 -2
- metadata +23 -27
- data/lib/mina-core-1.1.7.jar +0 -0
- data/lib/quickfixj-all-1.5.3.jar +0 -0
- data/lib/slf4j-api-1.6.3.jar +0 -0
- data/lib/slf4j-jdk14-1.6.3.jar +0 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: de101a569a1aba316d5eeafd16d8931deed0e130
|
4
|
+
data.tar.gz: a6f425052a7a2bc9c7103139d70ba56925bde6fa
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a338f6f38021b8e492dfb4d9bbc2f1a8735e0d059cdfeedb6d1c61ce6a9cb07274d4d8455ad72a6d17e87c652ea0be07e5aa4a9f5e1b38151c5c7b9c14367665
|
7
|
+
data.tar.gz: 5bda158bd6ea1aa4f686aae457fb97470cf2e70875fb4f9e1aa28a5bf20dcb438d9f3d5d11cf4100fb64c65e8ee71b2afbc1dd6f06c65258ef239cb65f0f46ef
|
data/README.md
CHANGED
@@ -16,15 +16,40 @@ my_order.set my_account
|
|
16
16
|
|
17
17
|
quickfix-jruby imports the following jars included in the QuickFIX/J release
|
18
18
|
|
19
|
-
* quickfixj-all-1.
|
20
|
-
*
|
21
|
-
*
|
22
|
-
* slf4j-
|
19
|
+
* `quickfixj-all-1.6.0.jar`
|
20
|
+
* `dom4j-1.6.1.jar`
|
21
|
+
* `jaxen-1.1.4.jar`
|
22
|
+
* `jcl-over-slf4j-1.7.12.jar`
|
23
|
+
* `je-2.1.30.jar`
|
24
|
+
* `mina-core-2.0.9.jar`
|
25
|
+
* `proxool-0.9.1.jar`
|
26
|
+
* `slf4j-api-1.7.12.jar`
|
27
|
+
* `slf4j-jdk14-1.7.12.jar`
|
23
28
|
|
24
29
|
### Versioning
|
25
30
|
|
26
31
|
The major.minor version number corresponds to the major.minor version number of the QuickFIX/J release. The patch number may or may not correspond to the QuickFIX/J patch number.
|
27
32
|
|
33
|
+
Release
|
34
|
+
-------
|
35
|
+
|
36
|
+
Releases are performed with [jeweler](https://github.com/technicalpickles/jeweler).
|
37
|
+
|
38
|
+
You will need [your rubygems account set up accordingly](http://guides.rubygems.org/make-your-own-gem/).
|
39
|
+
|
40
|
+
### Example: Performing a release of version `1.2.3`
|
41
|
+
|
42
|
+
```shell
|
43
|
+
bundle exec rake version:write MAJOR=1 MINOR=2 PATCH=3
|
44
|
+
bundle exec rake release REMOTE=upstream
|
45
|
+
```
|
46
|
+
|
47
|
+
This will automatically:
|
48
|
+
|
49
|
+
* Generate `quickfix-jruby.gemspec` and commit it
|
50
|
+
* Tag `v1.2.3` and push it
|
51
|
+
* Build `quickfix-jruby-1.2.3.gem` and push it to [rubygems.org](https://rubygems.org/)
|
52
|
+
|
28
53
|
Install
|
29
54
|
-------
|
30
55
|
|
@@ -61,7 +86,8 @@ Credits
|
|
61
86
|
|
62
87
|
Contributers:
|
63
88
|
|
64
|
-
* Chris Busbey
|
89
|
+
* [Chris Busbey](https://github.com/cbusbey)
|
90
|
+
* [Mike Gatny](https://github.com/mgatny)
|
65
91
|
|
66
92
|
![Connamara Systems](http://www.connamara.com/images/home-connamara-logo-lg.png)
|
67
93
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.6.0
|
data/lib/dom4j-1.6.1.jar
ADDED
Binary file
|
data/lib/jaxen-1.1.4.jar
ADDED
Binary file
|
Binary file
|
data/lib/je-2.1.30.jar
ADDED
Binary file
|
Binary file
|
Binary file
|
data/lib/quickfix.rb
CHANGED
@@ -1,9 +1,14 @@
|
|
1
1
|
require 'java'
|
2
2
|
|
3
|
-
require 'quickfixj-all-1.
|
4
|
-
require '
|
5
|
-
require '
|
6
|
-
require 'slf4j-
|
3
|
+
require 'quickfixj-all-1.6.0.jar'
|
4
|
+
require 'dom4j-1.6.1.jar'
|
5
|
+
require 'jaxen-1.1.4.jar'
|
6
|
+
require 'jcl-over-slf4j-1.7.12.jar'
|
7
|
+
require 'je-2.1.30.jar'
|
8
|
+
require 'mina-core-2.0.9.jar'
|
9
|
+
require 'proxool-0.9.1.jar'
|
10
|
+
require 'slf4j-api-1.7.12.jar'
|
11
|
+
require 'slf4j-jdk14-1.7.12.jar'
|
7
12
|
|
8
13
|
def quickfix
|
9
14
|
Java::quickfix
|
Binary file
|
Binary file
|
Binary file
|
data/quickfix-jruby.gemspec
CHANGED
@@ -2,15 +2,16 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
+
# stub: quickfix-jruby 1.6.0 java lib
|
5
6
|
|
6
7
|
Gem::Specification.new do |s|
|
7
8
|
s.name = "quickfix-jruby"
|
8
|
-
s.version = "1.
|
9
|
+
s.version = "1.6.0"
|
9
10
|
s.platform = "java"
|
10
11
|
|
11
12
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
13
|
s.authors = ["Chris Busbey"]
|
13
|
-
s.date = "
|
14
|
+
s.date = "2015-04-15"
|
14
15
|
s.description = "QuickFIX/J packaged as a gem for JRuby"
|
15
16
|
s.email = "support@connamara.com"
|
16
17
|
s.extra_rdoc_files = [
|
@@ -28,11 +29,16 @@ Gem::Specification.new do |s|
|
|
28
29
|
"README.md",
|
29
30
|
"Rakefile",
|
30
31
|
"VERSION",
|
31
|
-
"lib/
|
32
|
+
"lib/dom4j-1.6.1.jar",
|
33
|
+
"lib/jaxen-1.1.4.jar",
|
34
|
+
"lib/jcl-over-slf4j-1.7.12.jar",
|
35
|
+
"lib/je-2.1.30.jar",
|
36
|
+
"lib/mina-core-2.0.9.jar",
|
37
|
+
"lib/proxool-0.9.1.jar",
|
32
38
|
"lib/quickfix.rb",
|
33
|
-
"lib/quickfixj-all-1.
|
34
|
-
"lib/slf4j-api-1.
|
35
|
-
"lib/slf4j-jdk14-1.
|
39
|
+
"lib/quickfixj-all-1.6.0.jar",
|
40
|
+
"lib/slf4j-api-1.7.12.jar",
|
41
|
+
"lib/slf4j-jdk14-1.7.12.jar",
|
36
42
|
"quickfix-jruby.gemspec",
|
37
43
|
"test/helper.rb",
|
38
44
|
"test/tc_quickfix.rb"
|
@@ -40,11 +46,11 @@ Gem::Specification.new do |s|
|
|
40
46
|
s.homepage = "http://github.com/connamara/quickfix-jruby"
|
41
47
|
s.licenses = ["GPL"]
|
42
48
|
s.require_paths = ["lib"]
|
43
|
-
s.rubygems_version = "1.
|
49
|
+
s.rubygems_version = "2.1.9"
|
44
50
|
s.summary = "Gemified QuickFIX/J"
|
45
51
|
|
46
52
|
if s.respond_to? :specification_version then
|
47
|
-
s.specification_version =
|
53
|
+
s.specification_version = 4
|
48
54
|
|
49
55
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
50
56
|
s.add_development_dependency(%q<jeweler>, ["~> 1.8"])
|
data/test/tc_quickfix.rb
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
require 'helper'
|
2
2
|
|
3
3
|
class TestQuickfixj < Test::Unit::TestCase
|
4
|
-
def
|
5
|
-
acct = quickfix.field.Account.new "
|
4
|
+
def test_lib_fix42
|
5
|
+
acct = quickfix.field.Account.new "hello_fix42"
|
6
6
|
order = quickfix.fix42.NewOrderSingle.new
|
7
7
|
order.set acct
|
8
8
|
|
@@ -11,4 +11,15 @@ class TestQuickfixj < Test::Unit::TestCase
|
|
11
11
|
|
12
12
|
assert_equal acct, order.get_account
|
13
13
|
end
|
14
|
+
|
15
|
+
def test_lib_fix50sp1
|
16
|
+
acct = quickfix.field.Account.new "hello_fix50sp1"
|
17
|
+
order = quickfix.fix50sp1.NewOrderSingle.new
|
18
|
+
order.set acct
|
19
|
+
|
20
|
+
acct_out = quickfix.field.Account.new
|
21
|
+
order.get acct_out
|
22
|
+
|
23
|
+
assert_equal acct, order.get_account
|
24
|
+
end
|
14
25
|
end
|
metadata
CHANGED
@@ -1,48 +1,43 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: quickfix-jruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
version: 1.5.4
|
4
|
+
version: 1.6.0
|
6
5
|
platform: java
|
7
6
|
authors:
|
8
7
|
- Chris Busbey
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2015-04-15 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
|
-
name: jeweler
|
16
|
-
version_requirements: !ruby/object:Gem::Requirement
|
17
|
-
requirements:
|
18
|
-
- - ~>
|
19
|
-
- !ruby/object:Gem::Version
|
20
|
-
version: '1.8'
|
21
|
-
none: false
|
22
14
|
requirement: !ruby/object:Gem::Requirement
|
23
15
|
requirements:
|
24
16
|
- - ~>
|
25
17
|
- !ruby/object:Gem::Version
|
26
18
|
version: '1.8'
|
27
|
-
|
19
|
+
name: jeweler
|
28
20
|
prerelease: false
|
29
21
|
type: :development
|
30
|
-
- !ruby/object:Gem::Dependency
|
31
|
-
name: rake
|
32
22
|
version_requirements: !ruby/object:Gem::Requirement
|
33
23
|
requirements:
|
34
24
|
- - ~>
|
35
25
|
- !ruby/object:Gem::Version
|
36
|
-
version: '
|
37
|
-
|
26
|
+
version: '1.8'
|
27
|
+
- !ruby/object:Gem::Dependency
|
38
28
|
requirement: !ruby/object:Gem::Requirement
|
39
29
|
requirements:
|
40
30
|
- - ~>
|
41
31
|
- !ruby/object:Gem::Version
|
42
32
|
version: '10.1'
|
43
|
-
|
33
|
+
name: rake
|
44
34
|
prerelease: false
|
45
35
|
type: :development
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.1'
|
46
41
|
description: QuickFIX/J packaged as a gem for JRuby
|
47
42
|
email: support@connamara.com
|
48
43
|
executables: []
|
@@ -61,17 +56,23 @@ files:
|
|
61
56
|
- README.md
|
62
57
|
- Rakefile
|
63
58
|
- VERSION
|
64
|
-
- lib/
|
59
|
+
- lib/dom4j-1.6.1.jar
|
60
|
+
- lib/jaxen-1.1.4.jar
|
61
|
+
- lib/jcl-over-slf4j-1.7.12.jar
|
62
|
+
- lib/je-2.1.30.jar
|
63
|
+
- lib/mina-core-2.0.9.jar
|
64
|
+
- lib/proxool-0.9.1.jar
|
65
65
|
- lib/quickfix.rb
|
66
|
-
- lib/quickfixj-all-1.
|
67
|
-
- lib/slf4j-api-1.
|
68
|
-
- lib/slf4j-jdk14-1.
|
66
|
+
- lib/quickfixj-all-1.6.0.jar
|
67
|
+
- lib/slf4j-api-1.7.12.jar
|
68
|
+
- lib/slf4j-jdk14-1.7.12.jar
|
69
69
|
- quickfix-jruby.gemspec
|
70
70
|
- test/helper.rb
|
71
71
|
- test/tc_quickfix.rb
|
72
72
|
homepage: http://github.com/connamara/quickfix-jruby
|
73
73
|
licenses:
|
74
74
|
- GPL
|
75
|
+
metadata: {}
|
75
76
|
post_install_message:
|
76
77
|
rdoc_options: []
|
77
78
|
require_paths:
|
@@ -80,21 +81,16 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
80
81
|
requirements:
|
81
82
|
- - '>='
|
82
83
|
- !ruby/object:Gem::Version
|
83
|
-
segments:
|
84
|
-
- 0
|
85
|
-
hash: 2
|
86
84
|
version: '0'
|
87
|
-
none: false
|
88
85
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
89
86
|
requirements:
|
90
87
|
- - '>='
|
91
88
|
- !ruby/object:Gem::Version
|
92
89
|
version: '0'
|
93
|
-
none: false
|
94
90
|
requirements: []
|
95
91
|
rubyforge_project:
|
96
|
-
rubygems_version: 1.
|
92
|
+
rubygems_version: 2.1.9
|
97
93
|
signing_key:
|
98
|
-
specification_version:
|
94
|
+
specification_version: 4
|
99
95
|
summary: Gemified QuickFIX/J
|
100
96
|
test_files: []
|
data/lib/mina-core-1.1.7.jar
DELETED
Binary file
|
data/lib/quickfixj-all-1.5.3.jar
DELETED
Binary file
|
data/lib/slf4j-api-1.6.3.jar
DELETED
Binary file
|
data/lib/slf4j-jdk14-1.6.3.jar
DELETED
Binary file
|