clausewitz-spelling 0.2.20 → 0.2.21

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 308bebfe1d1b30a9b2377fa495c80c9707effca67ac4d4eee7a090235b55add2
4
- data.tar.gz: 5b47988848b1c431a73870f46fc31fbeff31a0594e609b35f7c8211ba8936e09
3
+ metadata.gz: 307a7b730600743a74e195d09f375d84ed276bc598a122263c2a56c67fd97241
4
+ data.tar.gz: 1ac2b87f2222bf8810643b7dae550748517345b719bc08b19e435ef6de623ddc
5
5
  SHA512:
6
- metadata.gz: c4fa29b0f704b79495860bbab25db4f3f5877356850e613107eeeaa64f2b7d06360b84eff60b17c6a05b21d20b301766d10d05e23fe349a52a9939d2d35135cb
7
- data.tar.gz: 0c085fdc5046c9f9aa797200d0f684c8cf067db30a6ab1f98b332a5e367d918643f85a9cf11695dad422c99480d478c0b3f65a6c1890a649ffe1b261e341c9f0
6
+ metadata.gz: 528b9550b848a374742e423958a40fe76a0daa69b229dc93077225d7738939b0fe6e9e2fcda52a2b4d8c9af2fdd26b83fa11a14f207e362b564284d59aeff13b
7
+ data.tar.gz: ec539ab7604a7998d057332e54472702bda6a60164dd28c3b2e172dd1e24dedb2679517cbc687cd16818b319fda4f801bf2f64634533cc1c729025d5bf8617bd
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- clausewitz-spelling (0.2.20)
4
+ clausewitz-spelling (0.2.21)
5
5
  colorize
6
6
  damerau-levenshtein
7
7
  ffi-hunspell-wtchappell
@@ -257,8 +257,8 @@ module Clausewitz; module Spelling
257
257
 
258
258
  # Make sure a file to be checked is actually present and readable.
259
259
  def validate_filepath!(filepath)
260
- fail("No such file '#{filepath}'!") unless filepath.exist?
261
- fail("Cannot read '#{filepath}'!") unless filepath.readable?
260
+ puts ("No such file '#{filepath}'!") unless filepath.exist?
261
+ puts ("Cannot read '#{filepath}'!") unless filepath.readable?
262
262
  end
263
263
  end
264
264
  end; end
@@ -1,5 +1,5 @@
1
1
  module Clausewitz
2
2
  module Spelling
3
- VERSION = "0.2.20"
3
+ VERSION = "0.2.21"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: clausewitz-spelling
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.20
4
+ version: 0.2.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - Will Chappell