fastlane-plugin-google_sheet_localize 0.1.68 → 0.1.69

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: de7659bbc6c9c67d02f5363f37d822c4d86941f61f4087424599422779239948
4
- data.tar.gz: 7d942a723331b3f81f265e111ce085b9847844849cbf40dc2083f8a64aa45e69
3
+ metadata.gz: 4f9cb578d782ef979d433a371ae222c8ce55f0b6e21f736b01d8537ce7dc6c14
4
+ data.tar.gz: acd5da349ab609e42fb0ba818fa9eb94aa8b9a33b27f94fce389e6245b6c2cd8
5
5
  SHA512:
6
- metadata.gz: b9dd64e8eafdb313f1cae3f9c31a71904242e7ce1bc68fe2393b9bc98aa04410f3d1aff213de4bb1b6b446cafb1782c7cdb9ad5188a4a368f12596653ed7d751
7
- data.tar.gz: 8351fa37ccb0ac40995bfc891b25ef600d0f777e0b8b3ecb87aab7aaf77a92c1f49b75660efb0d9f33851603e03645789af943907bbb61b28b708705d6db961e
6
+ metadata.gz: 419e27c6f6c50893a9b9949a4858471f18a8cbbc10fa333b7f03fa56b3698fd81531fdde7fecc9633e08735b992bba0bccf7f1b2d9044b1eadb6a90a9e00edb4
7
+ data.tar.gz: bcc45eb353229d126db616d37b3cdee73110f679c472baf18e0adef3b77db0714aea7dc7e6a4c3cac5c21aa932fec1c0135c422b45287161176877cbd658987c
@@ -109,15 +109,17 @@ module Fastlane
109
109
 
110
110
  identifier = item['identifierIos']
111
111
 
112
- values = identifier.dup.gsub('.', ' ').split(" ")
112
+ values = identifier.dup.split(".")
113
113
 
114
114
  constantName = ""
115
115
 
116
116
  values.each_with_index do |item, index|
117
117
  if index == 0
118
- constantName += item.downcase
118
+ item[0] = item[0].downcase
119
+ constantName += item
119
120
  else
120
- constantName += item.capitalize
121
+ item[0] = item[0].upcase
122
+ constantName += item
121
123
  end
122
124
  end
123
125
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module GoogleSheetLocalize
3
- VERSION = "0.1.68"
3
+ VERSION = "0.1.69"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-google_sheet_localize
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.68
4
+ version: 0.1.69
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mario Hahn