strings-inflection 0.1.0
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 +7 -0
- data/CHANGELOG.md +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +424 -0
- data/Rakefile +8 -0
- data/lib/strings-inflection.rb +1 -0
- data/lib/strings/inflection.rb +202 -0
- data/lib/strings/inflection/combined_noun.rb +70 -0
- data/lib/strings/inflection/configuration.rb +84 -0
- data/lib/strings/inflection/extensions.rb +33 -0
- data/lib/strings/inflection/noun.rb +70 -0
- data/lib/strings/inflection/nouns.rb +715 -0
- data/lib/strings/inflection/parser.rb +99 -0
- data/lib/strings/inflection/term.rb +78 -0
- data/lib/strings/inflection/verb.rb +54 -0
- data/lib/strings/inflection/verbs.rb +130 -0
- data/lib/strings/inflection/version.rb +7 -0
- data/strings-inflection.gemspec +32 -0
- data/tasks/console.rake +11 -0
- data/tasks/coverage.rake +11 -0
- data/tasks/spec.rake +34 -0
- metadata +111 -0
metadata
ADDED
@@ -0,0 +1,111 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: strings-inflection
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Piotr Murach
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-12-03 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.5'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.5'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
description: Inflect English nouns and verbs. The algorithms are based on the analysis
|
56
|
+
of 7,000 most frequently used nouns and 6,000 most used verbs in English language.
|
57
|
+
email:
|
58
|
+
- me@piotrmurach.com
|
59
|
+
executables: []
|
60
|
+
extensions: []
|
61
|
+
extra_rdoc_files: []
|
62
|
+
files:
|
63
|
+
- CHANGELOG.md
|
64
|
+
- LICENSE.txt
|
65
|
+
- README.md
|
66
|
+
- Rakefile
|
67
|
+
- lib/strings-inflection.rb
|
68
|
+
- lib/strings/inflection.rb
|
69
|
+
- lib/strings/inflection/combined_noun.rb
|
70
|
+
- lib/strings/inflection/configuration.rb
|
71
|
+
- lib/strings/inflection/extensions.rb
|
72
|
+
- lib/strings/inflection/noun.rb
|
73
|
+
- lib/strings/inflection/nouns.rb
|
74
|
+
- lib/strings/inflection/parser.rb
|
75
|
+
- lib/strings/inflection/term.rb
|
76
|
+
- lib/strings/inflection/verb.rb
|
77
|
+
- lib/strings/inflection/verbs.rb
|
78
|
+
- lib/strings/inflection/version.rb
|
79
|
+
- strings-inflection.gemspec
|
80
|
+
- tasks/console.rake
|
81
|
+
- tasks/coverage.rake
|
82
|
+
- tasks/spec.rake
|
83
|
+
homepage: https://github.com/piotrmurach/strings-inflection
|
84
|
+
licenses:
|
85
|
+
- MIT
|
86
|
+
metadata:
|
87
|
+
allowed_push_host: https://rubygems.org
|
88
|
+
changelog_uri: https://github.com/piotrmurach/strings-inflection/blob/master/CHANGELOG.md
|
89
|
+
documentation_uri: https://www.rubydoc.info/gems/strings-inflection
|
90
|
+
homepage_uri: https://github.com/piotrmurach/strings-inflection
|
91
|
+
source_code_uri: https://github.com/piotrmurach/strings-inflection
|
92
|
+
post_install_message:
|
93
|
+
rdoc_options: []
|
94
|
+
require_paths:
|
95
|
+
- lib
|
96
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
97
|
+
requirements:
|
98
|
+
- - ">="
|
99
|
+
- !ruby/object:Gem::Version
|
100
|
+
version: '0'
|
101
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
102
|
+
requirements:
|
103
|
+
- - ">="
|
104
|
+
- !ruby/object:Gem::Version
|
105
|
+
version: '0'
|
106
|
+
requirements: []
|
107
|
+
rubygems_version: 3.0.6
|
108
|
+
signing_key:
|
109
|
+
specification_version: 4
|
110
|
+
summary: Inflect English nouns and verbs.
|
111
|
+
test_files: []
|