cocoapods-keys 2.2.0 → 2.2.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/CHANGELOG.md +4 -0
- data/Gemfile.lock +3 -3
- data/lib/cocoapods_keys.rb +1 -1
- data/templates/Keys.m.erb +6 -2
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 86d06ce794bdfa758b1001238ec11e6ae635274623f72ca9722ff33b7b11ae4c
|
4
|
+
data.tar.gz: bd2d607a2b0956d7c2e0fc620fc2bd115861dbc041fe297c474a1b63c33b49b1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fea1b50b535fedd2326333f297620ec467d2de7416a7bae36af2cfe7414f85edf9b69b30cc08648adcd4294718e14ccab7c3d37cbffca2f687290f3e2d452fc8
|
7
|
+
data.tar.gz: dfb7ce7bd1ff9648f802357c32acf44579ae76b1e035d1b526f73b7b1b901b314ab3eacd9fc739b0d137e3c61455dfb6f23a1f9c85e2084b56a3f542860e7a0a
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
cocoapods-keys (2.
|
4
|
+
cocoapods-keys (2.1.0)
|
5
5
|
dotenv
|
6
6
|
osx_keychain
|
7
7
|
|
@@ -53,7 +53,7 @@ GEM
|
|
53
53
|
colored (1.2)
|
54
54
|
colored2 (3.1.2)
|
55
55
|
diff-lcs (1.3)
|
56
|
-
dotenv (2.
|
56
|
+
dotenv (2.6.0)
|
57
57
|
escape (0.0.4)
|
58
58
|
fourflusher (0.3.2)
|
59
59
|
fuzzy_match (2.0.4)
|
@@ -116,4 +116,4 @@ DEPENDENCIES
|
|
116
116
|
rubocop
|
117
117
|
|
118
118
|
BUNDLED WITH
|
119
|
-
1.
|
119
|
+
1.16.4
|
data/lib/cocoapods_keys.rb
CHANGED
data/templates/Keys.m.erb
CHANGED
@@ -21,7 +21,11 @@
|
|
21
21
|
if (!(self = [super init])) { return nil; }
|
22
22
|
|
23
23
|
<% @keys.each do |key, value| %>
|
24
|
-
|
24
|
+
<% if @indexed_keys[key].length > 0 %>
|
25
|
+
char <%= key %>CString[<%= @indexed_keys[key].length + 1 %>] = { <%= key_data_arrays[key] %>, '\0' };
|
26
|
+
<% else %>
|
27
|
+
char <%= key %>CString[<%= @indexed_keys[key].length + 1 %>] = { '\0' };
|
28
|
+
<% end %>
|
25
29
|
_<%= key %> = <% if @indexed_keys.length > 0 %>
|
26
30
|
<% if @indexed_keys[key].length > 0 %>
|
27
31
|
[NSString stringWithCString:<%= key %>CString encoding:NSUTF8StringEncoding];
|
@@ -32,7 +36,7 @@
|
|
32
36
|
@"";
|
33
37
|
<% end %>
|
34
38
|
<% end %>
|
35
|
-
|
39
|
+
|
36
40
|
return self;
|
37
41
|
}
|
38
42
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods-keys
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Orta Therox
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2020-03
|
12
|
+
date: 2020-07-03 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: osx_keychain
|
@@ -163,7 +163,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
163
163
|
- !ruby/object:Gem::Version
|
164
164
|
version: '0'
|
165
165
|
requirements: []
|
166
|
-
|
166
|
+
rubyforge_project:
|
167
|
+
rubygems_version: 2.7.6
|
167
168
|
signing_key:
|
168
169
|
specification_version: 4
|
169
170
|
summary: CocoaPods Keys will store sensitive data in your Mac's keychain. Then on
|