matiuky_regexp 0.4.0 → 0.6.1

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: bbcb44ccb35ed2915432529b78d53bb4bd7f93556e1640478ba47dca89c43c51
4
- data.tar.gz: cb7ed51ce35c2c1a4a7972f87ed89aa0b3213a2b4533496c2ef63c3bef20908f
3
+ metadata.gz: 2360cd9bbf881d24beb5e2754b0e0967a770390a20780dad9db9faa4b72a2fe2
4
+ data.tar.gz: ababced51129b359e8d5752c1ae46792b0b1f114697a14e48a2ee97f2ec468bb
5
5
  SHA512:
6
- metadata.gz: a84a288158804ac2f71dcf156ac14ad1785e7fb5f135468cdac597b41d548f03d2a4e78469018e66ab990d96e8d28fb210e09a717f22a00513abbe0ee553e226
7
- data.tar.gz: 8b6f9090dd0ee326e8963dbeda78b484f7412e7261f64764caecb22c1dfcecb689ef75fcfdbaed5597b9cf80c00fdf6512799862b90b88a67581eb2bedfaee26
6
+ metadata.gz: 1a53b6f9a7306273c86cffca5fd08a5cca7b63b5bbe7ba7ffe5e46793679c11b92de3847d29157c54868e8ef41811d34d339e01c8c1955f41b2026aa6a890423
7
+ data.tar.gz: c1f0d8f1b2a67d9535b11d3e1b25732b7cce5189430482156feb9bdcd2f4bcb1557a5219e1db377f4e5fdfafb3546d9f357fe7c9d9933be28839dbba96caca44
data/.rubocop.yml CHANGED
@@ -7,3 +7,6 @@ Metrics/BlockLength:
7
7
 
8
8
  Layout/LineLength:
9
9
  Max: 104
10
+
11
+ Metrics/BlockLength:
12
+ Max: 31
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2016-2022 Anton Maminov
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # MatiukyRegexp
2
2
 
3
3
  [![Build Status][travis_badge]][travis]
4
+ [![Gem Version][rubygems_badge]][rubygems]
4
5
 
5
6
  A collection of usefull regular expressions for ukrainian matiuky
6
7
 
@@ -52,9 +53,11 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/mamant
52
53
 
53
54
  Author: Anton Maminov (anton.maminov@gmail.com)
54
55
 
55
- Copyright: 2016-2020 Anton Maminov (anton.maminov@gmail.com)
56
+ Copyright: 2016-2022 Anton Maminov (anton.maminov@gmail.com)
56
57
 
57
- The gem is available as open source under the terms of the [DBAD license](https://github.com/philsturgeon/dbad/blob/master/LICENSE.md).
58
+ This library is distributed under the MIT license. Please see the LICENSE file.
58
59
 
59
60
  [travis_badge]: http://img.shields.io/travis/mamantoha/matiuky_regexp.svg?style=flat
60
61
  [travis]: https://travis-ci.org/mamantoha/matiuky_regexp
62
+ [rubygems_badge]: http://img.shields.io/gem/v/matiuky_regexp.svg?style=flat
63
+ [rubygems]: http://rubygems.org/gems/matiuky_regexp
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MatiukyRegexp
4
- VERSION = '0.4.0'
4
+ VERSION = '0.6.1'
5
5
  end
@@ -5,15 +5,15 @@ require 'matiuky_regexp/version'
5
5
  module MatiukyRegexp
6
6
  REGEXP = /
7
7
  \s*(\S*(
8
- (?<!ра|ма|роздму|слу|штов|прочу|ко|ню)ху[йяюєї]
8
+ (?<!ра|ма|роздму|слу|штов|прочу|ко|ню|попа|вичу|втю|відбрі|пси|випи)ху[йяюєї]
9
9
  |
10
10
  п[иі]зд
11
11
  |
12
12
  [єї]б[ауе]
13
13
  |
14
- (?<!гу|ро|лю|ду|кора|знадо|розсла|ру|ша|гра|гре|ансам|бом|свер)бл(?!ях[аиоу]|яш)[ьєя]
14
+ (?<!гу|ро|ме|лю|ду|кора|знадо|розсла|ру|ша|гра|гре|ансам|бом|свер|о)бл(?!ях[аиоу]|яш|япа)[ьєя]
15
15
  |
16
- (?<!за)сук(?!<н|он|упн)[аиоу]
16
+ (?<!за)сук(?!<н|он|упн|улент)[аиоу]
17
17
  |
18
18
  йоб
19
19
  |
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
12
12
 
13
13
  spec.summary = ' A collection of usefull regular expressions for ukrainian matiuky'
14
14
  spec.homepage = 'https://github.com/mamantoha/matiuky_regexp'
15
- spec.license = 'Nonstandard'
15
+ spec.licenses = 'MIT'
16
16
 
17
17
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
18
  spec.bindir = 'exe'
@@ -24,4 +24,5 @@ Gem::Specification.new do |spec|
24
24
  spec.add_development_dependency 'minitest'
25
25
  spec.add_development_dependency 'rake'
26
26
  spec.add_development_dependency 'rubocop'
27
+ spec.metadata['rubygems_mfa_required'] = 'true'
27
28
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: matiuky_regexp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anton Maminov
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-08-18 00:00:00.000000000 Z
11
+ date: 2022-07-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -66,7 +66,7 @@ dependencies:
66
66
  - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
- description:
69
+ description:
70
70
  email:
71
71
  - anton.linux@gmail.com
72
72
  executables: []
@@ -77,6 +77,7 @@ files:
77
77
  - ".rubocop.yml"
78
78
  - ".travis.yml"
79
79
  - Gemfile
80
+ - LICENSE
80
81
  - README.md
81
82
  - Rakefile
82
83
  - bin/console
@@ -87,9 +88,10 @@ files:
87
88
  - matiuky_regexp.gemspec
88
89
  homepage: https://github.com/mamantoha/matiuky_regexp
89
90
  licenses:
90
- - Nonstandard
91
- metadata: {}
92
- post_install_message:
91
+ - MIT
92
+ metadata:
93
+ rubygems_mfa_required: 'true'
94
+ post_install_message:
93
95
  rdoc_options: []
94
96
  require_paths:
95
97
  - lib
@@ -104,8 +106,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
104
106
  - !ruby/object:Gem::Version
105
107
  version: '0'
106
108
  requirements: []
107
- rubygems_version: 3.1.2
108
- signing_key:
109
+ rubygems_version: 3.3.7
110
+ signing_key:
109
111
  specification_version: 4
110
112
  summary: A collection of usefull regular expressions for ukrainian matiuky
111
113
  test_files: []