vimgolf-finder 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 06a148fd40c696a29a1e25cb9d33eb9dd31c8847
4
- data.tar.gz: 32c6ca058282db10a5738bbaca5b4a095dbc73fc
3
+ metadata.gz: 6fd87f3f5ed7b54a5fdeb59471f459c8adaf5c25
4
+ data.tar.gz: 4ef16b6b09136fc84c125423f748fd12933ed9c0
5
5
  SHA512:
6
- metadata.gz: 8c687bf4e0d47d3db3083aa0f66393542d7eba7b9875c805503c62e0f510cc5b5ff3815ed51fb2f8ea2ba06237f682df0bce84c581c70b6087a95b051783db23
7
- data.tar.gz: 881ee5e27ac7a2fe5c84216786fc231ad7dacb8f85504f4e2ec2e131f3fdbaf2759b35012fef8aec8aad6f568707b203610e991592660dea78816cf548efe272
6
+ metadata.gz: f4676df92fd79796cd6d46f66dd1af1ed0f7996442c9847ae01cf02ed4ca6a8cdb413f74ba5e7eab4089a885b006d7000e627cda0e894d9b9499dbdad0b2442b
7
+ data.tar.gz: e9502cf5fe1db1d4b814d588b98ba5e2a1be19e199dff6580b5312a3057d5e76e9aa13907daf387be0b0238175178ed7ed51c056e918dc465587975c8116eedc
data/README.md CHANGED
@@ -18,6 +18,7 @@ Commands:
18
18
  vimgolf-finder help [COMMAND] # Describe available commands or one specific command
19
19
  vimgolf-finder list # Show VimGolf challenges
20
20
  vimgolf-finder random # Pick one at random from VimGolf challenges
21
+ vimgolf-finder solves # Show solved VimGolf challenges
21
22
  ```
22
23
 
23
24
  ### List 🔎
@@ -113,8 +114,7 @@ Do you want to play? (y/n) y
113
114
  # Playing VimGolf...
114
115
 
115
116
  Thanks for playing!
116
- Solves? (y/n) n
117
- $
117
+ Solves? (y/n) y
118
118
  ```
119
119
 
120
120
  ## TODO
@@ -37,7 +37,7 @@ module VimGolfFinder
37
37
  end
38
38
 
39
39
  file.readlines.each do |line|
40
- if line.eql?(self.id)
40
+ if line.strip.eql?(self.id)
41
41
  return true
42
42
  end
43
43
  end
@@ -1,3 +1,3 @@
1
1
  module VimGolfFinder
2
- VERSION = '0.1.6'
2
+ VERSION = '0.1.7'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vimgolf-finder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lee Sun-Hyoup