multilocale 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 +33 -0
- data/LICENSE +21 -0
- data/README.md +230 -0
- data/exe/multilocale-ruby +6 -0
- data/lib/multilocale/cli.rb +215 -0
- data/lib/multilocale/client.rb +256 -0
- data/lib/multilocale/config_file.rb +130 -0
- data/lib/multilocale/dictionary.rb +94 -0
- data/lib/multilocale/encoding.rb +45 -0
- data/lib/multilocale/errors.rb +79 -0
- data/lib/multilocale/locale_file.rb +118 -0
- data/lib/multilocale/phrase.rb +103 -0
- data/lib/multilocale/phrases.rb +96 -0
- data/lib/multilocale/project.rb +95 -0
- data/lib/multilocale/projects.rb +42 -0
- data/lib/multilocale/sync.rb +135 -0
- data/lib/multilocale/version.rb +5 -0
- data/lib/multilocale.rb +38 -0
- metadata +68 -0
metadata
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: multilocale
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Multilocale
|
|
8
|
+
bindir: exe
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: |
|
|
13
|
+
Reads and writes projects and phrases on multilocale.com over its REST API,
|
|
14
|
+
and syncs them into the locale files the i18n gem (and Rails) already read.
|
|
15
|
+
No runtime dependencies.
|
|
16
|
+
email:
|
|
17
|
+
- support@multilocale.com
|
|
18
|
+
executables:
|
|
19
|
+
- multilocale-ruby
|
|
20
|
+
extensions: []
|
|
21
|
+
extra_rdoc_files: []
|
|
22
|
+
files:
|
|
23
|
+
- CHANGELOG.md
|
|
24
|
+
- LICENSE
|
|
25
|
+
- README.md
|
|
26
|
+
- exe/multilocale-ruby
|
|
27
|
+
- lib/multilocale.rb
|
|
28
|
+
- lib/multilocale/cli.rb
|
|
29
|
+
- lib/multilocale/client.rb
|
|
30
|
+
- lib/multilocale/config_file.rb
|
|
31
|
+
- lib/multilocale/dictionary.rb
|
|
32
|
+
- lib/multilocale/encoding.rb
|
|
33
|
+
- lib/multilocale/errors.rb
|
|
34
|
+
- lib/multilocale/locale_file.rb
|
|
35
|
+
- lib/multilocale/phrase.rb
|
|
36
|
+
- lib/multilocale/phrases.rb
|
|
37
|
+
- lib/multilocale/project.rb
|
|
38
|
+
- lib/multilocale/projects.rb
|
|
39
|
+
- lib/multilocale/sync.rb
|
|
40
|
+
- lib/multilocale/version.rb
|
|
41
|
+
homepage: https://www.multilocale.com
|
|
42
|
+
licenses:
|
|
43
|
+
- MIT
|
|
44
|
+
metadata:
|
|
45
|
+
homepage_uri: https://www.multilocale.com
|
|
46
|
+
source_code_uri: https://github.com/multilocale/multilocale-ruby-gem
|
|
47
|
+
changelog_uri: https://github.com/multilocale/multilocale-ruby-gem/blob/main/CHANGELOG.md
|
|
48
|
+
documentation_uri: https://www.multilocale.com/developers/
|
|
49
|
+
bug_tracker_uri: https://github.com/multilocale/multilocale-ruby-gem/issues
|
|
50
|
+
rubygems_mfa_required: 'true'
|
|
51
|
+
rdoc_options: []
|
|
52
|
+
require_paths:
|
|
53
|
+
- lib
|
|
54
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
55
|
+
requirements:
|
|
56
|
+
- - ">="
|
|
57
|
+
- !ruby/object:Gem::Version
|
|
58
|
+
version: '3.2'
|
|
59
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
60
|
+
requirements:
|
|
61
|
+
- - ">="
|
|
62
|
+
- !ruby/object:Gem::Version
|
|
63
|
+
version: '0'
|
|
64
|
+
requirements: []
|
|
65
|
+
rubygems_version: 4.0.11
|
|
66
|
+
specification_version: 4
|
|
67
|
+
summary: Ruby client for the Multilocale translation API
|
|
68
|
+
test_files: []
|