wordwise 0.2.0 → 0.2.1
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 +4 -2
- data/changelog.md +5 -0
- data/lib/wordwise/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fe2703e1846703e0f6f08c0f0fa14321fca8614e7403617b85fa7daf00a31049
|
4
|
+
data.tar.gz: bbe83d583bfc85d13cf821cc2417d130415e387a2143553050329d99b32161ea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 816f6e9da7543ea7b58e7a29da9198e41df84afa423ddca6cef63b18ec58934a22b10a1e8cb39814f41f0e3b0bfffac3968575efe2ccfdb6dcfdd2eb2b3408f5
|
7
|
+
data.tar.gz: d84b6a84dc49eb4c54798ad701a9635c90c3ec6835acfca29468459b8382eb7a1db0f126abe80db8b60af488abd8ab7e4d8800774890c9849807c62039698c09
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
# Wordwise
|
2
2
|
|
3
|
-
A quiz game. Challenge your vocabulary! Given a random word, choose the correct definition from a list. Option to see word origin.
|
3
|
+
A quiz game. Challenge your vocabulary! Given a random word, choose the correct definition from a list. Option to see word origin.
|
4
|
+
|
5
|
+
You can read a blog post about the writing of this gem at <https://ronsala.net/makefile_002_cli_data_gem--notes_to_a_junior_to_me_dev.>
|
4
6
|
|
5
7
|
## Installation
|
6
8
|
|
@@ -20,7 +22,7 @@ Or install it yourself as:
|
|
20
22
|
|
21
23
|
## Usage
|
22
24
|
|
23
|
-
Start the program in your terminal with "ruby bin/wordise". On starting, WordWise will choose a word and several definitions, one of which is correct. (This process may take a few seconds). Once you've made your choice, type the corresponding number and hit 'enter'. WordWise will tell you if you're correct and, if not, the correct definition. Type 'o' and 'enter' to see the word's origin (etymology) or 'n' and 'enter' for the next question. To exit the game, type 'e' and 'enter'.
|
25
|
+
Start the program in your terminal with "ruby bin/wordise". On starting, WordWise will choose a word and several definitions, one of which is correct. (This process may take a few seconds). Once you've made your choice, type the corresponding number and hit 'enter'. WordWise will tell you if you're correct and, if not, the correct definition. Type 'o' and 'enter' to see the word's origin (etymology) or 'n' and 'enter' for the next question. To exit the game, type 'e' and 'enter'. Watch a video demo at <https://bit.ly/2Kz8zgX>.
|
24
26
|
|
25
27
|
## Development
|
26
28
|
|
data/changelog.md
ADDED
data/lib/wordwise/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wordwise
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ron Sala
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-05-
|
11
|
+
date: 2018-05-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -73,6 +73,7 @@ files:
|
|
73
73
|
- Rakefile
|
74
74
|
- bin/setup
|
75
75
|
- bin/wordwise
|
76
|
+
- changelog.md
|
76
77
|
- config/environment.rb
|
77
78
|
- lib/cli.rb
|
78
79
|
- lib/question.rb
|