UG_RRobots 1.3 → 2.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.
- data/{RakeFile → Rakefile} +4 -4
- data/bin/rrobots +83 -23
- data/bin/tournament +78 -10
- data/config/locales/en.yml +17 -0
- data/config/locales/fr.yml +14 -0
- data/config/rrobots.yml +9 -2
- data/doc/install.rdoc +85 -0
- data/doc/install_fr.rdoc +86 -0
- data/doc/manual.rdoc +11 -45
- data/doc/manual_fr.rdoc +10 -45
- data/doc/usage.rdoc +56 -0
- data/doc/usage_fr.rdoc +63 -0
- data/lib/battlefield.rb +19 -6
- data/lib/bullets.rb +11 -0
- data/lib/configuration.rb +3 -1
- data/lib/misc.rb +29 -0
- data/lib/overloads.rb +25 -1
- data/lib/robot.rb +24 -2
- data/lib/robotrunner.rb +71 -3
- data/lib/tkarena.rb +17 -15
- data/robots/Killer.rb +1 -1
- data/robots/MsgBot.rb +12 -4
- data/robots/SittingDuck.rb +1 -0
- metadata +24 -4
data/robots/SittingDuck.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: UG_RRobots
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: "
|
4
|
+
version: "2.0"
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- "Simon Kr\xC3\xB6ger, Romain GEORGES"
|
@@ -11,8 +11,17 @@ cert_chain: []
|
|
11
11
|
|
12
12
|
date: 2009-12-16 00:00:00 +01:00
|
13
13
|
default_executable:
|
14
|
-
dependencies:
|
15
|
-
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: i18n
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.2.1
|
24
|
+
version:
|
16
25
|
description: Ultragreen RRobots Fork
|
17
26
|
email: dev@ultragreen.net
|
18
27
|
executables:
|
@@ -21,8 +30,12 @@ executables:
|
|
21
30
|
extensions: []
|
22
31
|
|
23
32
|
extra_rdoc_files:
|
33
|
+
- doc/install.rdoc
|
34
|
+
- doc/install_fr.rdoc
|
24
35
|
- doc/manual.rdoc
|
25
36
|
- doc/manual_fr.rdoc
|
37
|
+
- doc/usage.rdoc
|
38
|
+
- doc/usage_fr.rdoc
|
26
39
|
- bin/rrobots
|
27
40
|
- bin/tournament
|
28
41
|
files:
|
@@ -32,6 +45,7 @@ files:
|
|
32
45
|
- lib/bullets.rb
|
33
46
|
- lib/configuration.rb
|
34
47
|
- lib/explosions.rb
|
48
|
+
- lib/misc.rb
|
35
49
|
- lib/overloads.rb
|
36
50
|
- lib/robot.rb
|
37
51
|
- lib/robotrunner.rb
|
@@ -161,9 +175,15 @@ files:
|
|
161
175
|
- images/red_turret340.gif
|
162
176
|
- images/red_turret350.gif
|
163
177
|
- images/toolbox.gif
|
178
|
+
- config/locales/en.yml
|
179
|
+
- config/locales/fr.yml
|
164
180
|
- config/rrobots.yml
|
181
|
+
- doc/install.rdoc
|
182
|
+
- doc/install_fr.rdoc
|
165
183
|
- doc/manual.rdoc
|
166
184
|
- doc/manual_fr.rdoc
|
185
|
+
- doc/usage.rdoc
|
186
|
+
- doc/usage_fr.rdoc
|
167
187
|
- contribs/allbots.rb
|
168
188
|
- robots/BillDuck.rb
|
169
189
|
- robots/BotOne.rb
|
@@ -191,7 +211,7 @@ files:
|
|
191
211
|
- robots/SniperDuck.rb
|
192
212
|
- robots/WallPainter.rb
|
193
213
|
- COPYRIGHT.txt
|
194
|
-
-
|
214
|
+
- Rakefile
|
195
215
|
has_rdoc: true
|
196
216
|
homepage: http://www.ultragreen.net/projects/rrobots
|
197
217
|
licenses: []
|