acpc_dealer 1.0.4 → 2.0.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 99789d5a03e5acbd540ef02990138777c06377ab
4
- data.tar.gz: 2db48297e7b705c9978505bc3d6207d18e3ee08d
3
+ metadata.gz: 86b82a4b1624963cf2d1e1244aa8e0ad86c3b45b
4
+ data.tar.gz: 088d7951d1f2b89f03c014aa460e1dd675eb57e5
5
5
  SHA512:
6
- metadata.gz: 8814b3620f48342049c6f1aa71f88e64f04d981def6341564ab5035cb99cc1dc74b6e64328946dbacc079e3f00f873a46e0cc5afdd63defb1c0f3054a8d66708
7
- data.tar.gz: 0f3435a5493a3ee86172251340030c4b72436942757625a17c657b60083d88cc7f5114f8e757d1c225ca5275e5274cf784d31715a37117ef1bae53c6a6866d74
6
+ metadata.gz: 612721d433f3fc87c2c785a18acba54a0ff777c1f9ec12b8ecc8691e15c58f2300984ceea5fc4311a569cd841444e3830b22d34c96f95db0b61dba9aaf81e5ab
7
+ data.tar.gz: 2c6270e1db018d4310bcdebd49b218d25b53c463fb62726bbe824f227837ab1cbc98de8c5b1926941e4a13e97d017ffc3c69f1302ce0bc9ad17dd12343f24fee
@@ -1,3 +1,3 @@
1
1
  module AcpcDealer
2
- VERSION = "1.0.4"
2
+ VERSION = "2.0.0"
3
3
  end
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, :millisecond_response_timeout) do
36
- def initialize(port_number, host_name = 'localhost', millisecond_response_timeout = nil)
37
- super port_number, host_name, millisecond_response_timeout
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
- millisecond_response_timeout = 100
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: 1.0.4
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-05-12 00:00:00.000000000 Z
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