loco_strings 0.1.9 → 0.1.10

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 45967a4d7a5f4a5ddc6d3fbeec661fcf7d9c096cade448616b7e096e3d41b3d5
4
- data.tar.gz: e0f26ff5774aff74719a30811404f9834e26b3a96f0f800cb08a6a3f004a3f2b
3
+ metadata.gz: b061caa0d3be5a87ac4b7b4fc582fcf032681c6adb49a08a3021fd7532d3fa9a
4
+ data.tar.gz: 4d56f9fee2da2095b7ac5e4c3bab7f801fc35bc3f5f309f21eca652ec8c3367f
5
5
  SHA512:
6
- metadata.gz: '08dfd0d814825888c048dcc6ed25900b4dc2c5e85e82411a447c4d17b562ba99b57f98af8e0b18466a73cac316161ec06e6e0b8877fa9fcf9b24e1e257ef84e7'
7
- data.tar.gz: 95c99ae564c6624e653efc459b7d75c974024912ca68df84acaf548836471752c42ada4e47e73a0e4ebebf19395f51b82ede7a1093381689849b8bf1ba0e42e8
6
+ metadata.gz: 513d4ed18c5d957ab767804435f778f972b0dedba7be684bbc5f1686f2795ddac18d188538748679d7ad51b72a8754f4b3f8f10734e49425c7cd28fc89819e09
7
+ data.tar.gz: 7a1c2a4dfef48987f13144be1c642c276239c9f81b79df4fef7f78e63e0937c25705f47ba25983f1ffe5edaa81cacf9b7db982801a7ecbc079a7b34ea3f4b392
data/Gemfile CHANGED
@@ -5,7 +5,7 @@ source "https://rubygems.org"
5
5
  # Specify your gem's dependencies in loco_strings.gemspec
6
6
  gemspec
7
7
 
8
- gem "nokogiri", "~> 1.14", ">= 1.14.3"
8
+ gem "nokogiri", "~> 1.19", ">= 1.19.3"
9
9
 
10
10
  gem "rake", "~> 13.0"
11
11
 
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- loco_strings (0.1.4.1)
5
- nokogiri (~> 1.13, >= 1.13.8)
4
+ loco_strings (0.1.10)
5
+ nokogiri (~> 1.19, >= 1.19.3)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
@@ -10,14 +10,16 @@ GEM
10
10
  ast (2.4.2)
11
11
  diff-lcs (1.5.0)
12
12
  json (2.6.3)
13
- nokogiri (1.14.3-x86_64-darwin)
13
+ nokogiri (1.19.3-arm64-darwin)
14
14
  racc (~> 1.4)
15
- nokogiri (1.14.3-x86_64-linux)
15
+ nokogiri (1.19.3-x86_64-darwin)
16
+ racc (~> 1.4)
17
+ nokogiri (1.19.3-x86_64-linux-gnu)
16
18
  racc (~> 1.4)
17
19
  parallel (1.23.0)
18
20
  parser (3.2.2.1)
19
21
  ast (~> 2.4.1)
20
- racc (1.6.2)
22
+ racc (1.8.1)
21
23
  rainbow (3.1.1)
22
24
  rake (13.0.6)
23
25
  regexp_parser (2.8.0)
@@ -51,12 +53,13 @@ GEM
51
53
  unicode-display_width (2.4.2)
52
54
 
53
55
  PLATFORMS
56
+ arm64-darwin-24
54
57
  x86_64-darwin-22
55
58
  x86_64-linux
56
59
 
57
60
  DEPENDENCIES
58
61
  loco_strings!
59
- nokogiri (~> 1.14, >= 1.14.3)
62
+ nokogiri (~> 1.19, >= 1.19.3)
60
63
  rake (~> 13.0)
61
64
  rspec (~> 3.0)
62
65
  rubocop (~> 1.21)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module LocoStrings
4
- VERSION = "0.1.9"
4
+ VERSION = "0.1.10"
5
5
  end
data/loco_strings.gemspec CHANGED
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
14
14
  spec.description = "LocoStrings is a powerful and easy-to-use Ruby gem that simplifies the process of managing localization strings for iOS and Android apps. With LocoStrings, you can easily extract, organize, and update your app's localized strings in one place, making it easy to maintain consistency across all of your app's translations. LocoStrings supports multiple file formats, including XLIFF and CSV, and provides a simple and intuitive API for working with your app's strings in code. Whether you're a solo developer or part of a team, LocoStrings makes managing your app's localization a breeze."
15
15
  spec.homepage = "https://github.com/ftp27/loco_strings"
16
16
  spec.license = "MIT"
17
- spec.required_ruby_version = ">= 2.6.0"
17
+ spec.required_ruby_version = ">= 3.1.0"
18
18
 
19
19
  spec.metadata["homepage_uri"] = spec.homepage
20
20
  spec.metadata["source_code_uri"] = spec.homepage
@@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
31
31
  spec.require_paths = ["lib"]
32
32
 
33
33
  # Uncomment to register a new dependency of your gem
34
- spec.add_dependency "nokogiri", "~> 1.13", ">= 1.13.8"
34
+ spec.add_dependency "nokogiri", "~> 1.19", ">= 1.19.3"
35
35
 
36
36
  # For more information and examples about making a new gem, check out our
37
37
  # guide at: https://bundler.io/guides/creating_gem.html
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: loco_strings
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aleksei Cherepanov
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2026-06-07 00:00:00.000000000 Z
10
+ date: 2026-06-17 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: nokogiri
@@ -15,20 +15,20 @@ dependencies:
15
15
  requirements:
16
16
  - - "~>"
17
17
  - !ruby/object:Gem::Version
18
- version: '1.13'
18
+ version: '1.19'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 1.13.8
21
+ version: 1.19.3
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  requirements:
26
26
  - - "~>"
27
27
  - !ruby/object:Gem::Version
28
- version: '1.13'
28
+ version: '1.19'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 1.13.8
31
+ version: 1.19.3
32
32
  description: LocoStrings is a powerful and easy-to-use Ruby gem that simplifies the
33
33
  process of managing localization strings for iOS and Android apps. With LocoStrings,
34
34
  you can easily extract, organize, and update your app's localized strings in one
@@ -75,7 +75,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
75
75
  requirements:
76
76
  - - ">="
77
77
  - !ruby/object:Gem::Version
78
- version: 2.6.0
78
+ version: 3.1.0
79
79
  required_rubygems_version: !ruby/object:Gem::Requirement
80
80
  requirements:
81
81
  - - ">="