greeklish_iso843 0.4.2 → 0.4.3

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: 46b2cbf0c06d497c6304b9c8cad2c85e29723d741c8f83c74dbb3236463ee4a8
4
- data.tar.gz: 2b81ed1ae06fd1bee3951879ccc840eedcf0965a17420d63ba10083acb447d50
3
+ metadata.gz: b5d2ef8c9b648af399cd8cbdae6371173a871ae5107031fc9f00d7cff26b81b1
4
+ data.tar.gz: 051d809e9efac4ed60176798ce46412f63bdfbb8e8b3c4d8ddb7ef721cdde690
5
5
  SHA512:
6
- metadata.gz: e946eb95e8666400056fa2e5a07cc3a4b3924607bbc6d2f717c9c022013200629bddfa2d09f72d40ce15cd913c1f8fede0e03d63de85d5833729252e8432cf3d
7
- data.tar.gz: b705856436f156c99fb14c316054a2d9d65b953e82acfab9daaeeb61a0dcca8583861c70e222e9264b938f599456408e92d1782916fae62e4f8cea64b997df31
6
+ metadata.gz: 77fdf6af41076c632a35cb0bce2b1397c14cf50d6961959ea13b45eb6d351219a9b8a1be0f293f56b2d1a99735af8fbc2f5fa713704ac518fcb70fdc202bd050
7
+ data.tar.gz: 4bad1dea32c72a9014ff8a077cd052bd9ec2a0b520ad1a9733e93ce0999ddc875b7d2711150a053d4c14df5909ed0b5d2952fb5af15b317c229e43a7bab7901e
data/CHANGELOG.md CHANGED
@@ -7,6 +7,14 @@ The format is based on [Keep a Changelog][] and this project adheres to
7
7
 
8
8
  ## [Unreleased][]
9
9
 
10
+ ## [0.4.3][] - 2022-01-21
11
+
12
+ - [#3][]: Fix `ευς`, `αυς` and `ηυς` throwing `UnhandledCaseError`
13
+ ([@cherouvim][])
14
+
15
+ [#3]: https://github.com/agorf/greeklish_iso843/issues/3
16
+ [@cherouvim]: https://github.com/cherouvim
17
+
10
18
  ## [0.4.2][] - 2021-05-29
11
19
 
12
20
  ### Changed
@@ -67,4 +75,5 @@ Initial release.
67
75
  [0.4.0]: https://github.com/agorf/greeklish_iso843/compare/0.3.0...0.4.0
68
76
  [0.4.1]: https://github.com/agorf/greeklish_iso843/compare/0.4.0...0.4.1
69
77
  [0.4.2]: https://github.com/agorf/greeklish_iso843/compare/0.4.1...0.4.2
70
- [Unreleased]: https://github.com/agorf/greeklish_iso843/compare/0.4.2...HEAD
78
+ [0.4.3]: https://github.com/agorf/greeklish_iso843/compare/0.4.2...0.4.3
79
+ [Unreleased]: https://github.com/agorf/greeklish_iso843/compare/0.4.3...HEAD
data/README.md CHANGED
@@ -1,12 +1,17 @@
1
1
  # greeklish_iso843 [![Gem](https://img.shields.io/gem/v/greeklish_iso843?color=blue)](https://rubygems.org/gems/greeklish_iso843/) [![RuboCop](https://github.com/agorf/greeklish_iso843/actions/workflows/rubocop.yml/badge.svg)](https://github.com/agorf/greeklish_iso843/actions/workflows/rubocop.yml) [![Tests](https://github.com/agorf/greeklish_iso843/actions/workflows/tests.yml/badge.svg)](https://github.com/agorf/greeklish_iso843/actions/workflows/tests.yml)
2
2
 
3
3
  A [Ruby][] library that converts Greek text to [Greeklish][], conforming to the
4
- [ISO 843][] (ELOT 743) standard used by the Greek State.
4
+ [ISO 843][] standard (based on the Greek standard ELOT 743 or ΕΛΟΤ 743) used by
5
+ the Greek state.
5
6
 
6
7
  [Ruby]: https://www.ruby-lang.org/en/
7
8
  [Greeklish]: https://en.wikipedia.org/wiki/Greeklish
8
9
  [ISO 843]: https://www.iso.org/standard/5215.html
9
10
 
11
+ ## Demo
12
+
13
+ An online service that uses this Gem is available at <https://greeklish.xyz>
14
+
10
15
  ## Installation
11
16
 
12
17
  As a [Gem][]:
@@ -66,8 +71,8 @@ verbose output.
66
71
 
67
72
  ## Acknowledgements
68
73
 
69
- This library was initially based on [an official, buggy implementation in
70
- JavaScript][js].
74
+ This library was initially based on an official, buggy [implementation][js] in
75
+ JavaScript by the Hellenic Police.
71
76
 
72
77
  [js]: http://www.passport.gov.gr/passports/GrElotConverter/GrElotConverter.html
73
78
 
@@ -9,7 +9,7 @@ class GreeklishIso843::GreekText
9
9
 
10
10
  GREEK_LETTERS_AFTER_V = "#{GREEK_VOWELS}βγδζλμνρ".freeze
11
11
 
12
- GREEK_LETTERS_AFTER_F = 'θκξπστφχψ'.freeze
12
+ GREEK_LETTERS_AFTER_F = 'θκξπσςτφχψ'.freeze
13
13
 
14
14
  REPLACEMENTS = {
15
15
  'αι' => 'ai',
@@ -1,3 +1,3 @@
1
1
  module GreeklishIso843
2
- VERSION = '0.4.2'.freeze
2
+ VERSION = '0.4.3'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: greeklish_iso843
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Angelos Orfanakos
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-05-29 00:00:00.000000000 Z
11
+ date: 2022-01-21 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: rubygems@angelos.dev
@@ -28,7 +28,8 @@ files:
28
28
  homepage: https://github.com/agorf/greeklish_iso843
29
29
  licenses:
30
30
  - MIT
31
- metadata: {}
31
+ metadata:
32
+ rubygems_mfa_required: 'true'
32
33
  post_install_message:
33
34
  rdoc_options: []
34
35
  require_paths: