loco_strings 0.1.0 → 0.1.1
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 +4 -4
- data/Gemfile.lock +2 -1
- data/README.md +2 -0
- data/lib/loco_strings/version.rb +1 -1
- metadata +22 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 79d663be035e5b1ad273b17e729235204d0f38bbda6dcb69d55e6dd5077145f2
|
|
4
|
+
data.tar.gz: 41c2bf22dabec94904f27817d8da2fcf60787a569a7adf3708bb34eadf8a2512
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: de7b40862a9998f06ccf6473c5a7c17861d51693e7a6b788e779cfdc81350a313130ef36d4b8ff21f1693b4b76a1953d4f871a981677e28463055b3cc82b9d66
|
|
7
|
+
data.tar.gz: 815cc8a29514e75611d74a1b6824252b78171b89ea02eacfbdf6c84c040d27b334416d0d2abbc8251584b1d6e673331947fe2919d457fead8c38179394d1b8b5
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# LocoStrings
|
|
2
2
|
|
|
3
|
+
[](https://badge.fury.io/rb/loco_strings)
|
|
4
|
+
|
|
3
5
|
LocoStrings is a Ruby gem that provides utilities for working with localization strings in iOS and Android applications.
|
|
4
6
|
|
|
5
7
|
If you're an iOS or Android developer, you know how important it is to properly localize your apps for different languages and regions. However, managing localization files can be a tedious and error-prone task, especially as your app grows and supports more languages.
|
data/lib/loco_strings/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: loco_strings
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Aleksei Cherepanov
|
|
@@ -9,7 +9,27 @@ autorequire:
|
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2023-05-02 00:00:00.000000000 Z
|
|
12
|
-
dependencies:
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: nokogiri
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.13'
|
|
20
|
+
- - ">="
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: 1.13.8
|
|
23
|
+
type: :runtime
|
|
24
|
+
prerelease: false
|
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
26
|
+
requirements:
|
|
27
|
+
- - "~>"
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '1.13'
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: 1.13.8
|
|
13
33
|
description: LocoStrings is a powerful and easy-to-use Ruby gem that simplifies the
|
|
14
34
|
process of managing localization strings for iOS and Android apps. With LocoStrings,
|
|
15
35
|
you can easily extract, organize, and update your app's localized strings in one
|