software_challenge_client 0.1.0 → 0.1.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.
- checksums.yaml +4 -4
- data/.gitignore +1 -1
- data/README.md +19 -4
- data/RELEASES.md +4 -0
- data/example/client.rb +1 -0
- data/example/main.rb +1 -0
- data/lib/software_challenge_client.rb +1 -0
- data/lib/software_challenge_client/board.rb +1 -0
- data/lib/software_challenge_client/client_interface.rb +1 -0
- data/lib/software_challenge_client/condition.rb +1 -0
- data/lib/software_challenge_client/connection.rb +1 -0
- data/lib/software_challenge_client/debug_hint.rb +1 -0
- data/lib/software_challenge_client/field.rb +1 -0
- data/lib/software_challenge_client/field_type.rb +1 -0
- data/lib/software_challenge_client/game_state.rb +1 -0
- data/lib/software_challenge_client/move.rb +1 -0
- data/lib/software_challenge_client/network.rb +1 -0
- data/lib/software_challenge_client/player.rb +1 -0
- data/lib/software_challenge_client/player_color.rb +1 -0
- data/lib/software_challenge_client/protocol.rb +1 -0
- data/lib/software_challenge_client/runner.rb +1 -0
- data/lib/software_challenge_client/util/constants.rb +1 -0
- data/lib/software_challenge_client/version.rb +2 -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: cc478e82e26181f2ed5b8cea12987dd0f3f1a082
|
4
|
+
data.tar.gz: d1b9ba8c5c74612743c3106bacdfab4ff23a315b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8bb4c4139d5f60852836ad95de14400fcc462072c28f8ea9ab496abb21b8b30be435096f9781a339720f58f9da389c4ded62f4dd4e18f178fa922b6ea7639ab
|
7
|
+
data.tar.gz: c156862ec8599501a5eb7f1ceac867ea542024caf520d5fdfcfa64f7fd8185117996a7bf3cdeffc7d6b11a7e933ad6bb8944bec7629c4852407792e32b3962ac
|
data/.gitignore
CHANGED
data/README.md
CHANGED
@@ -23,6 +23,16 @@ Or install it yourself as:
|
|
23
23
|
|
24
24
|
See the example client in the example directory.
|
25
25
|
|
26
|
+
You can execute the example client by entering
|
27
|
+
|
28
|
+
```console
|
29
|
+
ruby main.rb
|
30
|
+
```
|
31
|
+
|
32
|
+
in a shell (while being in the example directory). Note that the
|
33
|
+
software_challenge_client gem needs to be installed for this to work and a
|
34
|
+
server waiting for a manual client has to be running.
|
35
|
+
|
26
36
|
## Development
|
27
37
|
|
28
38
|
After checking out the repo, run `bin/setup` to install
|
@@ -31,10 +41,15 @@ run `bin/console` for an interactive prompt that will allow you to
|
|
31
41
|
experiment.
|
32
42
|
|
33
43
|
To install this gem onto your local machine, run `bundle exec rake
|
34
|
-
install`.
|
35
|
-
|
36
|
-
|
37
|
-
|
44
|
+
install`.
|
45
|
+
|
46
|
+
### Releasing
|
47
|
+
|
48
|
+
To release a new version, update the version number in
|
49
|
+
`lib/software_challenge_client/version.rb` and update RELEASES.md. Then run
|
50
|
+
`bundle exec rake release`, which will create a git tag for the version, push
|
51
|
+
git commits and tags, and push the `.gem` file to
|
52
|
+
[rubygems.org](https://rubygems.org).
|
38
53
|
|
39
54
|
## Contributing
|
40
55
|
|
data/RELEASES.md
CHANGED
data/example/client.rb
CHANGED
data/example/main.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: software_challenge_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ralf-Tobias Diekert
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-09-
|
11
|
+
date: 2015-09-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -107,7 +107,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
107
107
|
version: '0'
|
108
108
|
requirements: []
|
109
109
|
rubyforge_project:
|
110
|
-
rubygems_version: 2.4.
|
110
|
+
rubygems_version: 2.4.5
|
111
111
|
signing_key:
|
112
112
|
specification_version: 4
|
113
113
|
summary: This gem provides functions to build a client for the coding competition
|