wordwise 0.2.2 → 1.0.0

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: 60a80be3a0c048f0eb43a02c505fa6ecf52bf2a384b33999e4cab0237ec78fbe
4
- data.tar.gz: 63711d316836ce116e1551cdf4b8c1c3032ad08cd864e04dd7146ab735454089
3
+ metadata.gz: ad5474e5707b0e5f23a1c288169232151fd6df521819459fb04649137699b970
4
+ data.tar.gz: 3b81668b2bd1f7370e8f10adb2bde3f378f08243a385210816c675d7b93ed5b1
5
5
  SHA512:
6
- metadata.gz: 1da4bc88bf53ef1869d8e674a205072da180f3e3aa052d698ffd577a563109517c77949aaed09f28d3c014e96fae3722fd21bbb4c8f2a07896c369f2df0819d6
7
- data.tar.gz: 5f5defce6218e6603cde1e485d4b32f1d02c298ce773b9280e0f0fcad78054cd586a0535b4fb6ccd6b4af7918a54ae705143630ebb35b273b60640c8f4752709
6
+ metadata.gz: 9925b7edda27a0683b9924673e970fe26563f3284858485f79e7022e3f1b14613983fb29c40065a870cc594191d36349d4707565796a34dd9d979821cbf17581
7
+ data.tar.gz: f9b4c8c6b286a81cd7ab55011d30eaff96b5bdb1a7f7088f9ffb2fcff57ac7cf6540c95f13ab8ff15280fa19757c54bfc78f49a47ec9adb469cca76eb9551aca
@@ -8,28 +8,28 @@ GEM
8
8
  specs:
9
9
  coderay (1.1.2)
10
10
  diff-lcs (1.3)
11
- method_source (0.9.0)
12
- mini_portile2 (2.3.0)
13
- nokogiri (1.8.2)
14
- mini_portile2 (~> 2.3.0)
15
- pry (0.11.3)
11
+ method_source (0.9.2)
12
+ mini_portile2 (2.4.0)
13
+ nokogiri (1.10.1)
14
+ mini_portile2 (~> 2.4.0)
15
+ pry (0.12.2)
16
16
  coderay (~> 1.1.0)
17
17
  method_source (~> 0.9.0)
18
- rake (10.5.0)
18
+ rake (12.3.2)
19
19
  require_all (2.0.0)
20
- rspec (3.7.0)
21
- rspec-core (~> 3.7.0)
22
- rspec-expectations (~> 3.7.0)
23
- rspec-mocks (~> 3.7.0)
24
- rspec-core (3.7.1)
25
- rspec-support (~> 3.7.0)
26
- rspec-expectations (3.7.0)
20
+ rspec (3.8.0)
21
+ rspec-core (~> 3.8.0)
22
+ rspec-expectations (~> 3.8.0)
23
+ rspec-mocks (~> 3.8.0)
24
+ rspec-core (3.8.0)
25
+ rspec-support (~> 3.8.0)
26
+ rspec-expectations (3.8.2)
27
27
  diff-lcs (>= 1.2.0, < 2.0)
28
- rspec-support (~> 3.7.0)
29
- rspec-mocks (3.7.0)
28
+ rspec-support (~> 3.8.0)
29
+ rspec-mocks (3.8.0)
30
30
  diff-lcs (>= 1.2.0, < 2.0)
31
- rspec-support (~> 3.7.0)
32
- rspec-support (3.7.1)
31
+ rspec-support (~> 3.8.0)
32
+ rspec-support (3.8.0)
33
33
 
34
34
  PLATFORMS
35
35
  ruby
@@ -44,4 +44,4 @@ DEPENDENCIES
44
44
  wordwise!
45
45
 
46
46
  BUNDLED WITH
47
- 1.16.1
47
+ 1.16.6
data/README.md CHANGED
@@ -22,7 +22,7 @@ Or install it yourself as:
22
22
 
23
23
  ## Usage
24
24
 
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>.
25
+ Start the program in your terminal with `ruby bin/wordwise`. 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>.
26
26
 
27
27
  ## Development
28
28
 
@@ -40,6 +40,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
40
40
 
41
41
  ## Code of Conduct
42
42
 
43
- Everyone interacting in the Wordwise project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/ronsala/wordwise/blob/master/CODE_OF_CONDUCT.md).
44
- =======
45
- # wordwise
43
+ Everyone interacting in the Wordwise project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/ronsala/wordwise/blob/master/CODE_OF_CONDUCT.md).
@@ -1,3 +1,3 @@
1
1
  module Wordwise
2
- VERSION = '0.2.2'
2
+ VERSION = '1.0.0'
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.2
4
+ version: 1.0.0
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-23 00:00:00.000000000 Z
11
+ date: 2019-02-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -102,7 +102,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
102
102
  version: '0'
103
103
  requirements: []
104
104
  rubyforge_project:
105
- rubygems_version: 2.7.6
105
+ rubygems_version: 2.7.8
106
106
  signing_key:
107
107
  specification_version: 4
108
108
  summary: A quiz game. Challenge your vocabulary!