acpc_table_manager 3.0.17 → 3.0.18
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 +4 -4
- data/lib/acpc_table_manager/opponents.rb +2 -1
- data/lib/acpc_table_manager/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: baafc01d85fd023455f3ae040095e0136c70965b
|
|
4
|
+
data.tar.gz: 6b1f411c878dbcbaf19d31446a3f8a93ed159a8f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 252335c1b38e9a254bf811f0c1709f3119da5b9ddce9a1e98f039ad8da0541f346d5dc334baf790fa5a6c83c863e289a67a45e49058501f6a01360927bcb5655
|
|
7
|
+
data.tar.gz: 1dbad1a737aa5ea205b6f427da1b8052ba9b68a41c27b8a6c55ddb5ccc8d85964148fb43bab84edc46795a95a5b026526cd6cf2ad92df270cd1a941a4b7b9106
|
|
@@ -3,6 +3,7 @@ require 'process_runner'
|
|
|
3
3
|
require_relative 'config'
|
|
4
4
|
require_relative 'simple_logging'
|
|
5
5
|
require 'fileutils'
|
|
6
|
+
require 'shellwords'
|
|
6
7
|
|
|
7
8
|
module AcpcTableManager
|
|
8
9
|
module Opponents
|
|
@@ -26,7 +27,7 @@ module Opponents
|
|
|
26
27
|
|
|
27
28
|
bot_start_commands = opponents.map do |name, info|
|
|
28
29
|
{
|
|
29
|
-
args: [info[:runner], info[:host], info[:port]],
|
|
30
|
+
args: [info[:runner], info[:host], info[:port], Shellwords.escape(match.random_seed.to_s)],
|
|
30
31
|
log: File.join(opponents_log_dir, "#{match.name}.#{match.id}.#{name}.log")
|
|
31
32
|
}
|
|
32
33
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: acpc_table_manager
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.18
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dustin Morrill
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-05-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pony
|
|
@@ -332,7 +332,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
332
332
|
version: '0'
|
|
333
333
|
requirements: []
|
|
334
334
|
rubyforge_project:
|
|
335
|
-
rubygems_version: 2.
|
|
335
|
+
rubygems_version: 2.6.11
|
|
336
336
|
signing_key:
|
|
337
337
|
specification_version: 4
|
|
338
338
|
summary: Backend components to the ACPC Poker GUI Client
|