fastlane-plugin-google_sheet_localize 0.3.12 → 0.3.13

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: 9fced4de18f8a5080a5434880e0cfaf1a913b94ce99fa0cf616d4c3aef17841e
4
- data.tar.gz: a31f53557155e56132a9591069c9f145deeadcb43cb1c1de26c21b577c832dc0
3
+ metadata.gz: de5986abc705571310d0e2e91484f3ec35664149a0f69822ea56667fa8ce0d19
4
+ data.tar.gz: 240d6c742cb7b907213ee6ad90cd5017d9dde8f256b61ef3d3d3cfc76a494c3b
5
5
  SHA512:
6
- metadata.gz: 20e49808b8a3c5a3ea3570ce9d87d833ea4d152136e8c792d1571d1a61b227051d9d046e1db533ad1a3968fb09b292ab7cf05ea973e42edf848c556e26081e60
7
- data.tar.gz: 403dc72598654501cd42e7acca89a98e7d6963513c03cbd5b5d79e542163b9cfff0df5aaa39e4ced4163656cc81508a45a4120ece9237746109e4b117602e876
6
+ metadata.gz: 69226f609647ec2bc52c285102a9ef08789fdfdad9835e0d2df2ff00f0a02c20d39c824c8adcf956e172be266cb931d3158cd09e2271a88cd6f0c759220e9002
7
+ data.tar.gz: 66992848f981c89dbb2f3912dcd0cf2a1a1135186185bccbda194d2a82864a56b277313dd85edb37f9b55e4da22f44bd10b58e41b1fc858385d303b91622b371
@@ -521,26 +521,26 @@ module Fastlane
521
521
 
522
522
  stringIndexes = self.scan_str(filtered, /%[0-9]?[s@]/)
523
523
  intIndexes = self.scan_str(filtered, /%[0-9]?[d]/)
524
- floatIndexes = self.scan_str(filtered, /%[0-9]?[f]/)
524
+ floatIndexes = self.scan_str(filtered, /%[0-9]?[.f]/)
525
525
  doubleIndexes = self.scan_str(filtered, /%[0-9]?ld/)
526
526
 
527
527
  if stringIndexes.count > 0
528
- result = result.concat(stringIndexes.map { |e| { "index": e[0], "offset": e[1], "type": "String" }})
528
+ result = result + stringIndexes.map { |e| { "index": e[0], "offset": e[1], "type": "String" }}
529
529
  end
530
530
 
531
531
  if intIndexes.count > 0
532
- result = result.concat(intIndexes.map { |e| { "index": e[0], "offset": e[1], "type": "Int" }})
532
+ result = result + intIndexes.map { |e| { "index": e[0], "offset": e[1], "type": "Int" }}
533
533
  end
534
534
 
535
535
  if floatIndexes.count > 0
536
- result = result.concat(floatIndexes.map { |e| { "index": e[0], "offset": e[1], "type": "Float" }})
536
+ result = result + floatIndexes.map { |e| { "index": e[0], "offset": e[1], "type": "Float" }}
537
537
  end
538
538
 
539
539
  if doubleIndexes.count > 0
540
- result = result.concat(doubleIndexes.map { |e| { "index": e[0], "offset": e[1], "type": "Double" }})
540
+ result = result + doubleIndexes.map { |e| { "index": e[0], "offset": e[1], "type": "Double" }}
541
541
  end
542
542
 
543
- result = result.sort_by! { |k| k["offset"] }.reverse!
543
+ result = result.sort_by { |hsh| hsh[:offset] }
544
544
 
545
545
  return result
546
546
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module GoogleSheetLocalize
3
- VERSION = "0.3.12"
3
+ VERSION = "0.3.13"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-google_sheet_localize
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.12
4
+ version: 0.3.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mario Hahn
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-22 00:00:00.000000000 Z
11
+ date: 2021-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google_drive