gemwarrior 0.7.5 → 0.7.6
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/bin/gemwarrior +0 -0
- data/data/locations.yml +980 -600
- data/lib/gemwarrior/battle.rb +1 -1
- data/lib/gemwarrior/entities/items/ladder.rb +31 -0
- data/lib/gemwarrior/entities/items/rope.rb +29 -0
- data/lib/gemwarrior/entities/items/snowman.rb +28 -0
- data/lib/gemwarrior/entities/items/tent.rb +4 -0
- data/lib/gemwarrior/entities/location.rb +5 -1
- data/lib/gemwarrior/entities/player.rb +265 -249
- data/lib/gemwarrior/evaluator.rb +402 -393
- data/lib/gemwarrior/misc/version.rb +1 -1
- data/lib/gemwarrior/world.rb +297 -296
- metadata +9 -4
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gemwarrior
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Chadwick
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-06-
|
11
|
+
date: 2015-06-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: os
|
@@ -189,7 +189,10 @@ files:
|
|
189
189
|
- lib/gemwarrior/entities/items/gun.rb
|
190
190
|
- lib/gemwarrior/entities/items/herb.rb
|
191
191
|
- lib/gemwarrior/entities/items/keystone.rb
|
192
|
+
- lib/gemwarrior/entities/items/ladder.rb
|
192
193
|
- lib/gemwarrior/entities/items/massive_door.rb
|
194
|
+
- lib/gemwarrior/entities/items/rope.rb
|
195
|
+
- lib/gemwarrior/entities/items/snowman.rb
|
193
196
|
- lib/gemwarrior/entities/items/sparklything.rb
|
194
197
|
- lib/gemwarrior/entities/items/stalactite.rb
|
195
198
|
- lib/gemwarrior/entities/items/stone.rb
|
@@ -245,8 +248,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
245
248
|
version: '0'
|
246
249
|
requirements: []
|
247
250
|
rubyforge_project:
|
248
|
-
rubygems_version: 2.4.
|
251
|
+
rubygems_version: 2.4.8
|
249
252
|
signing_key:
|
250
253
|
specification_version: 4
|
251
254
|
summary: RPG as RubyGem
|
252
|
-
test_files:
|
255
|
+
test_files:
|
256
|
+
- spec/rubywarrior_spec.rb
|
257
|
+
- spec/spec_helper.rb
|