cologne_phonetics 1.0.0 → 1.0.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
  SHA1:
3
- metadata.gz: 34b708dd44c7f1aea872b47dfa5db5f9d3ad1b91
4
- data.tar.gz: 939eaec4a50c1c3e9fff629ee1b52b2f0ca1470d
3
+ metadata.gz: 61090341f36a88c3fa7c1dfa7c8a391ba87e225d
4
+ data.tar.gz: fe1008daec46259f74b58ce89088b46d914b4ab4
5
5
  SHA512:
6
- metadata.gz: '0948c7a91ec2a0764ea8c06d7a8c9a2c9fab2acebdc5cae1cafdf07283dbd8813114513d94b1743e2c7f0c5a85ca416e7e73234d953707ba30bbada050ed5c52'
7
- data.tar.gz: 741a913e92789e62e6d1335f941954f915e2a5fab9155801585d661b68426274492de36af677ca2c3fe7b4a25e64a4174e220f8388b873c48099486c186cdea3
6
+ metadata.gz: 4a0a2a840feb11b916aa45babbc6a5be1f3482f1f41e8500f43adb629a332e01bda164a230ef540f84ecbe0eaf045e33a5651cdddba0b8b16ef89532f3cdc93e
7
+ data.tar.gz: a05d8e769fe125d13bce8e3dfe75a1385e00ebc3baf7ed71dffd1ab543f322b64a9d6596ffc99b629348e0bb3f16818e92d46820fe0d6c1d50958d45ba3f0ba4
data/CHANGELOG.md CHANGED
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
6
 
7
- ## [1.0.0] – 2018-03-06
7
+ ## [1.0.1] – 2018-03-15
8
+ ### Changed
9
+ - README and gemspec (metadata only).
10
+
11
+ ## 1.0.0 – 2018-03-06
8
12
  - Initial release.
9
13
 
14
+ [1.0.1]: https://github.com/olivierlacan/keep-a-changelog/compare/v1.0.0...v1.0.1
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # ColognePhonetics
2
2
 
3
- The [“Cologne phonetics (Kölner Phonetik)”](https://en.wikipedia.org/wiki/Cologne_phonetics) algorithm encodes words in a way that enables to search for similarly sounding words. It’s related to the [“Soundex”](https://en.wikipedia.org/wiki/Soundex) algorithm, but better suited for the German language.
3
+ The [“Cologne phonetics (Kölner Phonetik)”](https://en.wikipedia.org/wiki/Cologne_phonetics) algorithm encodes words in a way that enables to search for similarly sounding words. It’s related to [“Soundex”](https://en.wikipedia.org/wiki/Soundex) and [“Metaphone”](https://en.wikipedia.org/wiki/Metaphone), but better suited for the German language.
4
4
 
5
5
  This implementations closely follows the algorithm as described on its Wikipedia page. Support for umlauts (Ä, Ö, Ü) and ß has been added as suggested there.
6
6
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ColognePhonetics
4
- VERSION = '1.0.0'
4
+ VERSION = '1.0.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cologne_phonetics
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stefan Daschek
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-03-06 00:00:00.000000000 Z
11
+ date: 2018-03-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -80,8 +80,9 @@ dependencies:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: 0.9.12
83
- description: Cologne phonetics (also Kölner Phonetik, Cologne process) is a phonetic
84
- algorithm which assigns to words a sequence of digits, the phonetic code.
83
+ description: The Cologne phonetics (also Kölner Phonetik, Cologne process) algorithm
84
+ encodes words in a way that enables to search for similarly sounding words. It’s
85
+ related to Soundex and Metaphone, but better suited for the German language.
85
86
  email:
86
87
  - stefan@die-antwort.eu
87
88
  executables: []
@@ -94,7 +95,7 @@ files:
94
95
  - lib/cologne_phonetics.rb
95
96
  - lib/cologne_phonetics/rules.rb
96
97
  - lib/cologne_phonetics/version.rb
97
- homepage: https://github.com/noniq/cologne_phonetics
98
+ homepage: https://github.com/die-antwort/cologne_phonetics
98
99
  licenses:
99
100
  - MIT
100
101
  metadata: {}