a_maze_ing 0.2.1 → 0.2.2
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/README.md +16 -3
- data/a_maze_ing.gemspec +6 -5
- data/images/cover.jpg +0 -0
- data/lib/a_maze_ing/version.rb +1 -1
- metadata +8 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2df41350e874bea7b56bef6f11c7b439950bf7ab
|
4
|
+
data.tar.gz: 6d7e772e5797cf37825ac0063faf75d9486906bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ef6f86e9eb7fcb2ab4952339457b7f71cdb1bce618326681f46e7dbd491f247c379e61597169922d9d850a8a414b0b8be9f32e6efbc24fe0f0b97f5aafd4a88
|
7
|
+
data.tar.gz: 9ce6757902dc79d30b8f5b751bd39dbe2c76b4ed09e37dc4097fa996068d96dd54624c69bc9cf7beb3ca628e89776eb2a691c7a498acb10f77076d6026f8a8fd
|
data/README.md
CHANGED
@@ -1,8 +1,12 @@
|
|
1
1
|
# AMazeIng
|
2
2
|
|
3
|
-
|
3
|
+
This is a small video game about maze, create on Gosu library. You need to find the way to specific point in the maze to win the game
|
4
4
|
|
5
|
-
|
5
|
+
(./images/cover.jpg)
|
6
|
+
|
7
|
+
## Requirements
|
8
|
+
|
9
|
+
This gem needs [Gosu](https://www.libgosu.org/) installed on your machine in order to render graphics
|
6
10
|
|
7
11
|
## Installation
|
8
12
|
|
@@ -22,7 +26,16 @@ Or install it yourself as:
|
|
22
26
|
|
23
27
|
## Usage
|
24
28
|
|
25
|
-
|
29
|
+
After install AMazeIng run following command to play
|
30
|
+
|
31
|
+
$ a_maze_ing
|
32
|
+
|
33
|
+
## Features Todo List
|
34
|
+
|
35
|
+
* Menu screen
|
36
|
+
* Multiplayer mode - two player race to the target
|
37
|
+
* Custom mode - custom difficulty
|
38
|
+
* Enemy mode - Race to the target before get hit by the enemies
|
26
39
|
|
27
40
|
## Development
|
28
41
|
|
data/a_maze_ing.gemspec
CHANGED
@@ -7,12 +7,13 @@ require "a_maze_ing/version"
|
|
7
7
|
Gem::Specification.new do |spec|
|
8
8
|
spec.name = "a_maze_ing"
|
9
9
|
spec.version = AMazeIng::VERSION
|
10
|
-
spec.authors = ["
|
11
|
-
spec.email = ["
|
10
|
+
spec.authors = ["at-cuongtran"]
|
11
|
+
spec.email = ["tranhuu.phucuong@gmail.com"]
|
12
12
|
|
13
|
-
spec.summary =
|
14
|
-
|
15
|
-
|
13
|
+
spec.summary = %q{Maze solving game design on Gosu library}
|
14
|
+
spec.description = %q{A fun and easy to play maze game with graphic.
|
15
|
+
Maze randomly generate with difficulty increase evey level}
|
16
|
+
spec.homepage = "https://github.com/at-cuongtran/a_maze_ing"
|
16
17
|
spec.license = "MIT"
|
17
18
|
|
18
19
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
data/images/cover.jpg
ADDED
Binary file
|
data/lib/a_maze_ing/version.rb
CHANGED
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: a_maze_ing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- at-cuongtran
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
@@ -66,9 +66,10 @@ dependencies:
|
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: 0.12.0
|
69
|
-
description:
|
69
|
+
description: "A fun and easy to play maze game with graphic. \n Maze randomly generate
|
70
|
+
with difficulty increase evey level"
|
70
71
|
email:
|
71
|
-
-
|
72
|
+
- tranhuu.phucuong@gmail.com
|
72
73
|
executables:
|
73
74
|
- a_maze_ing
|
74
75
|
extensions: []
|
@@ -84,13 +85,14 @@ files:
|
|
84
85
|
- bin/a_maze_ing
|
85
86
|
- bin/console
|
86
87
|
- bin/setup
|
88
|
+
- images/cover.jpg
|
87
89
|
- lib/a_maze_ing.rb
|
88
90
|
- lib/a_maze_ing/cell.rb
|
89
91
|
- lib/a_maze_ing/infor.rb
|
90
92
|
- lib/a_maze_ing/maze.rb
|
91
93
|
- lib/a_maze_ing/player.rb
|
92
94
|
- lib/a_maze_ing/version.rb
|
93
|
-
homepage:
|
95
|
+
homepage: https://github.com/at-cuongtran/a_maze_ing
|
94
96
|
licenses:
|
95
97
|
- MIT
|
96
98
|
metadata: {}
|
@@ -113,5 +115,5 @@ rubyforge_project:
|
|
113
115
|
rubygems_version: 2.6.11
|
114
116
|
signing_key:
|
115
117
|
specification_version: 4
|
116
|
-
summary:
|
118
|
+
summary: Maze solving game design on Gosu library
|
117
119
|
test_files: []
|