pokedex-terminal 0.1.6 → 0.1.7
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/Gemfile.lock +1 -1
- data/README.md +29 -8
- data/lib/PokemonBattleMusic.mp3 +0 -0
- data/lib/pokedex-terminal.rb +1 -0
- data/lib/terminal/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a2f3b404de6573cc503d4840a053db85b022e8bb51d8be7001d968609dd84ce6
|
4
|
+
data.tar.gz: 8b898d0a8422a755ca456c50fc0c49da9dcbd21a346272e0b2827273eff170b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f36d1fbbb5f96b845557c8d0095673593d866d8ebb1218a85209d08c7a6ec5cf9ff2cc537ef032eef6cb7017e60c6781692a609ccc3f2606da6e67c4f4bdf1f
|
7
|
+
data.tar.gz: 3ae26634f63f950f0e7bc3984531b26d65e7b5b3d7874b6b5a5f700560a1d6f070cdbc9323a99a9e1165f3ba3a05f45fa7259b9e7973b0e19c51f007e97e47ad
|
data/Gemfile.lock
CHANGED
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
|
+

|
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
|
data/lib/pokedex-terminal.rb
CHANGED
data/lib/terminal/version.rb
CHANGED
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.
|
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
|