acpc_dealer 1.0.4 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/acpc_dealer/version.rb +1 -1
- data/lib/acpc_dealer.rb +3 -3
- data/spec/connection_information_spec.rb +1 -3
- metadata +2 -3
- data/vendor/project_acpc_server/hi.log +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 86b82a4b1624963cf2d1e1244aa8e0ad86c3b45b
|
4
|
+
data.tar.gz: 088d7951d1f2b89f03c014aa460e1dd675eb57e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 612721d433f3fc87c2c785a18acba54a0ff777c1f9ec12b8ecc8691e15c58f2300984ceea5fc4311a569cd841444e3830b22d34c96f95db0b61dba9aaf81e5ab
|
7
|
+
data.tar.gz: 2c6270e1db018d4310bcdebd49b218d25b53c463fb62726bbe824f227837ab1cbc98de8c5b1926941e4a13e97d017ffc3c69f1302ce0bc9ad17dd12343f24fee
|
data/lib/acpc_dealer/version.rb
CHANGED
data/lib/acpc_dealer.rb
CHANGED
@@ -32,9 +32,9 @@ module AcpcDealer
|
|
32
32
|
}
|
33
33
|
}
|
34
34
|
|
35
|
-
ConnectionInformation = Struct.new(:port_number, :host_name
|
36
|
-
def initialize(port_number, host_name = 'localhost'
|
37
|
-
super port_number, host_name
|
35
|
+
ConnectionInformation = Struct.new(:port_number, :host_name) do
|
36
|
+
def initialize(port_number, host_name = 'localhost')
|
37
|
+
super port_number, host_name
|
38
38
|
end
|
39
39
|
end
|
40
40
|
end
|
@@ -8,11 +8,9 @@ describe ConnectionInformation do
|
|
8
8
|
it 'works' do
|
9
9
|
port = 9001
|
10
10
|
host = 'my host'
|
11
|
-
|
12
|
-
patient = ConnectionInformation.new(port, host, millisecond_response_timeout)
|
11
|
+
patient = ConnectionInformation.new(port, host)
|
13
12
|
|
14
13
|
patient.port_number.must_equal port
|
15
14
|
patient.host_name.must_equal host
|
16
|
-
patient.millisecond_response_timeout.must_equal millisecond_response_timeout
|
17
15
|
end
|
18
16
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: acpc_dealer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dustin Morrill
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-06-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: clive
|
@@ -233,7 +233,6 @@ files:
|
|
233
233
|
- spec/coverage/assets/0.5.3/stylesheet.css
|
234
234
|
- spec/coverage/assets/0.5.3/highlight.css
|
235
235
|
- spec/coverage/assets/0.5.3/loading.gif
|
236
|
-
- vendor/project_acpc_server/hi.log
|
237
236
|
- vendor/project_acpc_server/rng.c
|
238
237
|
- vendor/project_acpc_server/README.submission
|
239
238
|
- vendor/project_acpc_server/example_player.nolimit.2p.sh
|
File without changes
|