i18n-inflector-3 3.0.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 +1674 -0
- data/LGPL-LICENSE +169 -0
- data/README.md +259 -0
- data/docs/COPYING +57 -0
- data/docs/EXAMPLES +357 -0
- data/docs/HISTORY +280 -0
- data/docs/LEGAL +10 -0
- data/docs/LGPL +166 -0
- data/docs/TODO +8 -0
- data/docs/USAGE +967 -0
- data/docs/rdoc.css +20 -0
- data/lib/i18n-inflector/api.rb +753 -0
- data/lib/i18n-inflector/api_strict.rb +671 -0
- data/lib/i18n-inflector/backend.rb +352 -0
- data/lib/i18n-inflector/config.rb +289 -0
- data/lib/i18n-inflector/errors.rb +226 -0
- data/lib/i18n-inflector/hset.rb +24 -0
- data/lib/i18n-inflector/inflection_data.rb +357 -0
- data/lib/i18n-inflector/inflection_data_strict.rb +300 -0
- data/lib/i18n-inflector/inflector.rb +38 -0
- data/lib/i18n-inflector/interpolate.rb +546 -0
- data/lib/i18n-inflector/lazy_enum.rb +267 -0
- data/lib/i18n-inflector/long_comments.rb +57 -0
- data/lib/i18n-inflector/options.rb +329 -0
- data/lib/i18n-inflector/version.rb +27 -0
- data/lib/i18n-inflector.rb +19 -0
- metadata +87 -0
metadata
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: i18n-inflector-3
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 3.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Paweł Wilk
|
|
8
|
+
- Alexander Grebennik
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: i18n
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 0.6.0
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 0.6.0
|
|
27
|
+
description: Enhances simple I18n backend in a way that it inflects translation data
|
|
28
|
+
using pattern interpolation. Modernized for Ruby 3.x and 4.x.
|
|
29
|
+
email:
|
|
30
|
+
- pw@gnu.org
|
|
31
|
+
- sl.bug.sl@gmail.com
|
|
32
|
+
executables: []
|
|
33
|
+
extensions: []
|
|
34
|
+
extra_rdoc_files: []
|
|
35
|
+
files:
|
|
36
|
+
- ChangeLog
|
|
37
|
+
- LGPL-LICENSE
|
|
38
|
+
- README.md
|
|
39
|
+
- docs/COPYING
|
|
40
|
+
- docs/EXAMPLES
|
|
41
|
+
- docs/HISTORY
|
|
42
|
+
- docs/LEGAL
|
|
43
|
+
- docs/LGPL
|
|
44
|
+
- docs/TODO
|
|
45
|
+
- docs/USAGE
|
|
46
|
+
- docs/rdoc.css
|
|
47
|
+
- lib/i18n-inflector.rb
|
|
48
|
+
- lib/i18n-inflector/api.rb
|
|
49
|
+
- lib/i18n-inflector/api_strict.rb
|
|
50
|
+
- lib/i18n-inflector/backend.rb
|
|
51
|
+
- lib/i18n-inflector/config.rb
|
|
52
|
+
- lib/i18n-inflector/errors.rb
|
|
53
|
+
- lib/i18n-inflector/hset.rb
|
|
54
|
+
- lib/i18n-inflector/inflection_data.rb
|
|
55
|
+
- lib/i18n-inflector/inflection_data_strict.rb
|
|
56
|
+
- lib/i18n-inflector/inflector.rb
|
|
57
|
+
- lib/i18n-inflector/interpolate.rb
|
|
58
|
+
- lib/i18n-inflector/lazy_enum.rb
|
|
59
|
+
- lib/i18n-inflector/long_comments.rb
|
|
60
|
+
- lib/i18n-inflector/options.rb
|
|
61
|
+
- lib/i18n-inflector/version.rb
|
|
62
|
+
homepage: https://github.com/slbug/i18n-inflector
|
|
63
|
+
licenses:
|
|
64
|
+
- LGPL-3.0
|
|
65
|
+
metadata:
|
|
66
|
+
rubygems_mfa_required: 'true'
|
|
67
|
+
bug_tracker_uri: https://github.com/slbug/i18n-inflector/issues
|
|
68
|
+
source_code_uri: https://github.com/slbug/i18n-inflector
|
|
69
|
+
changelog_uri: https://github.com/slbug/i18n-inflector/blob/master/docs/HISTORY
|
|
70
|
+
rdoc_options: []
|
|
71
|
+
require_paths:
|
|
72
|
+
- lib
|
|
73
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
74
|
+
requirements:
|
|
75
|
+
- - ">="
|
|
76
|
+
- !ruby/object:Gem::Version
|
|
77
|
+
version: '3.4'
|
|
78
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - ">="
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '0'
|
|
83
|
+
requirements: []
|
|
84
|
+
rubygems_version: 3.7.2
|
|
85
|
+
specification_version: 4
|
|
86
|
+
summary: Inflection module for I18n (Ruby 3+ compatible fork)
|
|
87
|
+
test_files: []
|