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 +4 -4
- data/CHANGELOG.md +6 -1
- data/README.md +1 -1
- data/lib/cologne_phonetics/version.rb +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 61090341f36a88c3fa7c1dfa7c8a391ba87e225d
|
|
4
|
+
data.tar.gz: fe1008daec46259f74b58ce89088b46d914b4ab4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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
|
|
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
|
|
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.
|
|
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-
|
|
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)
|
|
84
|
-
|
|
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/
|
|
98
|
+
homepage: https://github.com/die-antwort/cologne_phonetics
|
|
98
99
|
licenses:
|
|
99
100
|
- MIT
|
|
100
101
|
metadata: {}
|