cocoapods-keys 2.0.6 → 2.0.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +11 -3
- data/Gemfile.lock +1 -1
- data/README.md +11 -11
- data/SWIFT_PROJECTS.md +1 -1
- data/lib/cocoapods_keys.rb +1 -1
- data/lib/preinstaller.rb +0 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d212c192545c118db8780995809a10adf90973c52eb10672a09f0b3bdc82aaf8
|
4
|
+
data.tar.gz: cc3c43a86c1dfc8dae80a2c07a707b6b632129503b86c38d0e70144e3bb315d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b344a3a7f80c9d5eda7e16abd3463ff136a2ed56565846e83f366eea71e3b30395d7ec0c452320b00d7e1bff16da03a2e9d20a1edd3e112eb1b5187c861d51c3
|
7
|
+
data.tar.gz: db05659e7d4796bd55be7aa0c25f6335b0cc90a4400c55fa6767ad451768ac8b0090b27e9f29ca10bbaa0b3c712fc1af03ff9db71865c9c6b78da1fa73a0465e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
## Master
|
2
2
|
|
3
|
+
## 2.0.7
|
4
|
+
|
5
|
+
* Fix keys not recorded in YML on first run. [ileitch]
|
6
|
+
|
7
|
+
## 2.0.6
|
8
|
+
|
9
|
+
* Makes list of keys unique on the yaml file [leoformaggio]
|
10
|
+
|
3
11
|
## 2.0.4 - 2.0.5
|
4
12
|
|
5
13
|
* Handles more CIs [SlaunchaMan]
|
@@ -10,15 +18,15 @@
|
|
10
18
|
|
11
19
|
## 2.0.2
|
12
20
|
|
13
|
-
* Sets a minimum iOS target of 8.0 [orta]
|
21
|
+
* Sets a minimum iOS target of 8.0 [orta]
|
14
22
|
|
15
23
|
## 2.0.1
|
16
24
|
|
17
|
-
* Handles more CI types [m-ruhl]
|
25
|
+
* Handles more CI types [m-ruhl]
|
18
26
|
|
19
27
|
## 2.0.0
|
20
28
|
|
21
|
-
* Handles casing correctly in generated key names [breaking] [marcelofabri]
|
29
|
+
* Handles casing correctly in generated key names [breaking] [marcelofabri]
|
22
30
|
* Adds Nullability notations to default erb template [Skogetroll]
|
23
31
|
* Use properties for accessing key values instead of functions [breaking, for swift] [Skogetroll]
|
24
32
|
* Don't ask for keys on the command line when running on CI. [dantoml]
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -42,23 +42,23 @@ Then running `pod install` will prompt for the keys not yet set and you can ensu
|
|
42
42
|
|
43
43
|
You can save keys on a per-project basis by running the command:
|
44
44
|
|
45
|
-
$ pod keys set KEY VALUE
|
45
|
+
$ bundle exec pod keys set KEY VALUE
|
46
46
|
|
47
47
|
You can list all known keys by running:
|
48
48
|
|
49
|
-
$ pod keys
|
49
|
+
$ bundle exec pod keys
|
50
50
|
|
51
51
|
For example:
|
52
52
|
|
53
53
|
``` sh
|
54
54
|
$ cd MyApplication
|
55
|
-
$ pod keys set "NetworkAPIToken" "AH2ZMiraGQbyUd9GkNTNfWEdxlwXcmHciEOH"
|
55
|
+
$ bundle exec pod keys set "NetworkAPIToken" "AH2ZMiraGQbyUd9GkNTNfWEdxlwXcmHciEOH"
|
56
56
|
Saved NetworkAPIToken to MyApplication.
|
57
57
|
|
58
|
-
$ pod keys set "AnalyticsToken" "6TYKGVCn7sBSBFpwfSUCclzDoSBtEXw7"
|
58
|
+
$ bundle exec pod keys set "AnalyticsToken" "6TYKGVCn7sBSBFpwfSUCclzDoSBtEXw7"
|
59
59
|
Saved AnalyticsToken to MyApplication.
|
60
60
|
|
61
|
-
$ pod keys
|
61
|
+
$ bundle exec pod keys
|
62
62
|
Keys for MyApplication
|
63
63
|
├ NetworkAPIToken - AH2ZMiraGQbyUd9GkNTNfWEdxlwXcmHciEOH
|
64
64
|
└ AnalyticsToken - 6TYKGVCn7sBSBFpwfSUCclzDoSBtEXw7
|
@@ -95,16 +95,16 @@ Some documentation is also available to [use cocoapods-keys in Swift projects](S
|
|
95
95
|
|
96
96
|
CocoaPods-keys has 3 other commands:
|
97
97
|
|
98
|
-
* `pod keys get [key] [optional project]`
|
98
|
+
* `bundle exec pod keys get [key] [optional project]`
|
99
99
|
Which will output the value of the key to STDOUT, useful for scripting.
|
100
100
|
|
101
|
-
* `pod keys rm [key] [optional project]`
|
102
|
-
Will remove a key from a project.
|
101
|
+
* `bundle exec pod keys rm [key] [optional project]`
|
102
|
+
Will remove a key from a project.
|
103
103
|
|
104
|
-
If Wildcards are included, it will remove the keys matching the pattern. E.g.: `pod keys rm "G*og*"` will remove *all* the keys that begin with 'G', have 'og' in the middle and end with anything.
|
105
|
-
To nuke all the keys, run either `pod keys rm "*"` or `pod keys rm --all`
|
104
|
+
If Wildcards are included, it will remove the keys matching the pattern. E.g.: `bundle exec pod keys rm "G*og*"` will remove *all* the keys that begin with 'G', have 'og' in the middle and end with anything.
|
105
|
+
To nuke all the keys, run either `bundle exec pod keys rm "*"` or `bundle exec pod keys rm --all`
|
106
106
|
|
107
|
-
* `pod keys generate [optional project]`
|
107
|
+
* `bundle exec pod keys generate [optional project]`
|
108
108
|
Will generate the obfuscated Objective-C keys class (mainly used internally).
|
109
109
|
|
110
110
|
#### Continuous Integration
|
data/SWIFT_PROJECTS.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Using CocoaPods-Keys in Swift projects
|
2
2
|
|
3
3
|
Once you've followed the setup instructions described in the [Usage](README.md#usage)
|
4
|
-
section of the README, you
|
4
|
+
section of the README, you are ready to use `Keys` from Swift.
|
5
5
|
|
6
6
|
## Importing the framework
|
7
7
|
|
data/lib/cocoapods_keys.rb
CHANGED
data/lib/preinstaller.rb
CHANGED
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.0.
|
4
|
+
version: 2.0.7
|
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:
|
12
|
+
date: 2019-01-04 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: osx_keychain
|