pokedex-terminal 0.1.6 → 0.1.7

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
  SHA256:
3
- metadata.gz: 4529c0b00f0ca1a98f052ecbf620c62b8670b5e06877f1f3e827df2668ef6588
4
- data.tar.gz: 94e361262b738e6c32d3857223e09707e597a07dfd83ff3746ee216df104d155
3
+ metadata.gz: a2f3b404de6573cc503d4840a053db85b022e8bb51d8be7001d968609dd84ce6
4
+ data.tar.gz: 8b898d0a8422a755ca456c50fc0c49da9dcbd21a346272e0b2827273eff170b4
5
5
  SHA512:
6
- metadata.gz: 579e3b5c40bef649387792ae8d632c8f74b730f933271049eca1aaeddc9bd9653b05011f7988de172dbd6a3e948fd7c2561501c57686a04b6efe7c2c0b4ebff4
7
- data.tar.gz: abf2820f86b2b366ea72ccde71ae68ba593f06ccc19e2e3fe602248b93ea90ebd0205d2189df0fea0f4c95b2e8df0e4b310030ebd7584ebb23e5c83a6394ed84
6
+ metadata.gz: 7f36d1fbbb5f96b845557c8d0095673593d866d8ebb1218a85209d08c7a6ec5cf9ff2cc537ef032eef6cb7017e60c6781692a609ccc3f2606da6e67c4f4bdf1f
7
+ data.tar.gz: 3ae26634f63f950f0e7bc3984531b26d65e7b5b3d7874b6b5a5f700560a1d6f070cdbc9323a99a9e1165f3ba3a05f45fa7259b9e7973b0e19c51f007e97e47ad
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pokedex-terminal (0.1.6)
4
+ pokedex-terminal (0.1.7)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -21,20 +21,33 @@ I used manual testing to test my app. You can find a spreadsheet that documents
21
21
  ---
22
22
 
23
23
  ## Installation
24
-
25
- You will need ruby installed to use this application.
26
- Once you have, run the command below from terminal.
27
- ```
28
- $ gem install pokedex-terminal
29
- ```
30
- #### Dependencies
31
-
24
+ #### Gem Dependencies
32
25
  * [artii](https://github.com/miketierney/artii)
33
26
  * [colorize](https://github.com/fazibear/colorize)
34
27
  * [lolcat](https://github.com/busyloop/lolcat/)
35
28
  * [smarter_csv](https://github.com/tilo/smarter_csv)
36
29
  * [tty-prompt](https://github.com/piotrmurach/tty-prompt#32-active_color)
37
30
 
31
+ The above dependencies should automatically install with the gem install command below, but you will have to manually install [mpg123](https://github.com/dominictarr/mpg123).
32
+
33
+ Ubuntu/Debian
34
+ ```
35
+ sudo apt-get install mpg123
36
+ ```
37
+ Arch Linux
38
+ ```
39
+ sudo pacman -Sy mpg123
40
+ ```
41
+ OSX
42
+ ```
43
+ brew install mpg123
44
+ ```
45
+
46
+ Once you have, run the command below from terminal.
47
+
48
+ ```
49
+ $ gem install pokedex-terminal
50
+ ```
38
51
  #### Hardware requirements.
39
52
 
40
53
  This program should run on any terminal-enabled device built during or after the year that the Pokemon franchise was created.
@@ -94,6 +107,14 @@ When the user selects "List Pokemon" from the main menu, the list_menu method of
94
107
 
95
108
  ----
96
109
 
110
+ ## Project Management
111
+
112
+ I used Trello create tasks and track my project completion. Here is a link to this [Trello](https://trello.com/b/Z1ggJcxD/pokemon-terminal).
113
+
114
+ ## Control Flow Diagram
115
+
116
+ ![Diagram](docs/Control_Flow_Pokedex.png)
117
+
97
118
  ## Development
98
119
 
99
120
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests (**if they exist**). You can also run `bin/console` for an interactive prompt that will allow you to experiment.
Binary file
@@ -3,5 +3,6 @@
3
3
  require_relative 'classes/Main_menu'
4
4
 
5
5
  fork { exec "artii 'Pokedex' --font larry3d | lolcat -a -d 15" }
6
+ fork { exec "mpg123 -q PokemonBattleMusic.mp3"}
6
7
  sleep(8)
7
8
  Main_menu.run
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Pokedex
4
4
  module Terminal
5
- VERSION = '0.1.6'
5
+ VERSION = '0.1.7'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pokedex-terminal
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - nova
@@ -118,6 +118,7 @@ files:
118
118
  - bin/console
119
119
  - bin/pokedex-terminal
120
120
  - bin/setup
121
+ - lib/PokemonBattleMusic.mp3
121
122
  - lib/classes/Delete.rb
122
123
  - lib/classes/List.rb
123
124
  - lib/classes/Main_menu.rb