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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ea617b3ed88889e8f480f611d6a09565378984b548619a2b1e59f328d97dd8ba
4
- data.tar.gz: e11409a2fba66a31f8f69baf4f9f0e65bb8ee6a91e81112857da67b1c1d5ba42
3
+ metadata.gz: fe2703e1846703e0f6f08c0f0fa14321fca8614e7403617b85fa7daf00a31049
4
+ data.tar.gz: bbe83d583bfc85d13cf821cc2417d130415e387a2143553050329d99b32161ea
5
5
  SHA512:
6
- metadata.gz: 38221fdb3e912e8ed3dae3ba41c95adb3f90f49367c0b7c1addfe51f3900dab1c96371384d7b342d756a55a0a930cad1a24dd91856b7497b47b0833c974759f0
7
- data.tar.gz: c2c04d0fd46a6033aeef4a042ea45f2a04eddf82ca94104743e8f5e6bc1c8982af22d3e00a7c9a053fe361bb9e2fd0e59b55a7bcbf0e29d3219e22a8fc44d038
6
+ metadata.gz: 816f6e9da7543ea7b58e7a29da9198e41df84afa423ddca6cef63b18ec58934a22b10a1e8cb39814f41f0e3b0bfffac3968575efe2ccfdb6dcfdd2eb2b3408f5
7
+ data.tar.gz: d84b6a84dc49eb4c54798ad701a9635c90c3ec6835acfca29468459b8382eb7a1db0f126abe80db8b60af488abd8ab7e4d8800774890c9849807c62039698c09
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- wordwise (0.2.0)
4
+ wordwise (0.2.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
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
 
@@ -0,0 +1,5 @@
1
+ # Changelog
2
+
3
+ ## 0.2.1
4
+
5
+ Updated README, added changelog.
@@ -1,3 +1,3 @@
1
1
  module Wordwise
2
- VERSION = '0.2.0'
2
+ VERSION = '0.2.1'
3
3
  end
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.0
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-13 00:00:00.000000000 Z
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