a_maze_ing 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8f499815c9f7632f0af92f21e7a3585953de04c2
4
- data.tar.gz: 188e5eb04c736af94764263f3d4940f222dd5288
3
+ metadata.gz: 2df41350e874bea7b56bef6f11c7b439950bf7ab
4
+ data.tar.gz: 6d7e772e5797cf37825ac0063faf75d9486906bd
5
5
  SHA512:
6
- metadata.gz: ba93e529fa680331c7b4760ac838901ac4584f5b6919cebdb091832fa8f48e17b4b827f9877196cbd84b5f69d124e3eb38a65fe7389f2d8771c35aec45c05e1b
7
- data.tar.gz: 68be57d00463ab18ef685afe7e2e54a228dfacf6619e60c0e58da2f6c446cecefc3fc2f2fd6c230e1930184346ee5ad357c74110c80c1cd31245b2444db613e2
6
+ metadata.gz: 0ef6f86e9eb7fcb2ab4952339457b7f71cdb1bce618326681f46e7dbd491f247c379e61597169922d9d850a8a414b0b8be9f32e6efbc24fe0f0b97f5aafd4a88
7
+ data.tar.gz: 9ce6757902dc79d30b8f5b751bd39dbe2c76b4ed09e37dc4097fa996068d96dd54624c69bc9cf7beb3ca628e89776eb2a691c7a498acb10f77076d6026f8a8fd
data/README.md CHANGED
@@ -1,8 +1,12 @@
1
1
  # AMazeIng
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/a_maze_ing`. To experiment with that code, run `bin/console` for an interactive prompt.
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
- TODO: Delete this and the text above, and describe your gem
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
- TODO: Write usage instructions here
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 = ["gt-cuongtran"]
11
- spec.email = ["cuong.tran.asiantech@gmail.com"]
10
+ spec.authors = ["at-cuongtran"]
11
+ spec.email = ["tranhuu.phucuong@gmail.com"]
12
12
 
13
- spec.summary = 'maze solving game'
14
- # spec.description = %q{TODO: Write a longer description or delete this line.}
15
- # spec.homepage = "public repo URL."
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
@@ -1,3 +1,3 @@
1
1
  module AMazeIng
2
- VERSION = "0.2.1"
2
+ VERSION = "0.2.2"
3
3
  end
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.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
- - gt-cuongtran
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
- - cuong.tran.asiantech@gmail.com
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: maze solving game
118
+ summary: Maze solving game design on Gosu library
117
119
  test_files: []