wordwise 0.1.0 → 0.1.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: 47ae2330eb8cdcdea1de5509a7abe87be602c46b80b0c0dcb5c3988b708c0293
4
- data.tar.gz: 977add80942f694b6f1e574ec08e88936b8f867d2f630e34c3e8b56dde01b53d
3
+ metadata.gz: f1947e162210a172708d21e999c7768353bc347cbc29172471129dfc1262992d
4
+ data.tar.gz: 5fa3952b37f6112138aca33bbd3673114c9042c99d502d2248fe4ca0cf92705e
5
5
  SHA512:
6
- metadata.gz: 4d39fa67ae151dfd56912d58e9f175dc44cf83fb0b4c7a581b163f325e3085a17ba281fb08495db65a614649474083b97d885235c5c82d4d4e1ae10121d33d00
7
- data.tar.gz: 583934acaf9e92341f7477a79ec740e7a7b27f9e4b79e578f091dd139f05c48fca0c87d2dcb63530de3c1ba3aeb1e3c3fda1ec32795f190b11011271a7ebf88b
6
+ metadata.gz: 51986ba8891c9bebe953c7de9d65f93806f064c5ac420a914353bd0914ffd37dbee340ba9979d3c979f32813f96decac6a536ee49f0a3d55c2b27c39bc1ff286
7
+ data.tar.gz: f6adfe9314385aed6ca33d5b2aa5825743624c0b9625279d0abafa191f99f908c3e9ece7e1de900a7413aeda0c246fd71834bdc61e26737ea283aa8b801e3b87
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- wordwise (0.1.0)
4
+ wordwise (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -24,7 +24,7 @@ On starting, WordWise will choose a word and several definitions, one of which i
24
24
 
25
25
  ## Development
26
26
 
27
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
27
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests.
28
28
 
29
29
  To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
30
30
 
data/lib/cli.rb CHANGED
@@ -60,7 +60,7 @@ class Wordwise::CLI
60
60
  # Samples starting at index 1 of array to avoid any column headings.
61
61
  @question_words_defs = @words_defs_ary[1..@words_defs_ary.size - 1].sample(4)
62
62
  # Prevents repetition of words in questions.
63
- # @words_defs_ary.delete_if { |wd| wd == @question_words_defs[0] }
63
+ @words_defs_ary.delete_if { |wd| wd == @question_words_defs[0] }
64
64
  set_question_words
65
65
  end
66
66
 
@@ -1,3 +1,3 @@
1
1
  module Wordwise
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wordwise
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - RonSala