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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bc0f07f741031ac24b6d2450cfa07b82c4732e393a988738d2b2ae67c6cd5922
4
- data.tar.gz: ff941516ab6ee39a0a0d0bbd8fe02c4562aa83c3eb8f1a0ac00fa092b290d641
3
+ metadata.gz: d212c192545c118db8780995809a10adf90973c52eb10672a09f0b3bdc82aaf8
4
+ data.tar.gz: cc3c43a86c1dfc8dae80a2c07a707b6b632129503b86c38d0e70144e3bb315d7
5
5
  SHA512:
6
- metadata.gz: 2d47f69d423d3aadd7b1a85c0ba65f42eaa238e45ea7aea2004a14e9a4c08d3e555276a2342cfb47d1de1298a5f6be86599ae90711737704b998b2438ea93f40
7
- data.tar.gz: 5d9b55f10b0c6c5a47d340a7cd80e0e9d897e2ffb5dcb53beada8a1c80bf253f2f1ef49d424cb5458de98cff08808b7a66cb86ddd4476eda1ff20c469a071090
6
+ metadata.gz: b344a3a7f80c9d5eda7e16abd3463ff136a2ed56565846e83f366eea71e3b30395d7ec0c452320b00d7e1bff16da03a2e9d20a1edd3e112eb1b5187c861d51c3
7
+ data.tar.gz: db05659e7d4796bd55be7aa0c25f6335b0cc90a4400c55fa6767ad451768ac8b0090b27e9f29ca10bbaa0b3c712fc1af03ff9db71865c9c6b78da1fa73a0465e
@@ -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]
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cocoapods-keys (2.0.6)
4
+ cocoapods-keys (2.0.7)
5
5
  dotenv
6
6
  osx_keychain
7
7
 
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
@@ -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 have two choices.
4
+ section of the README, you are ready to use `Keys` from Swift.
5
5
 
6
6
  ## Importing the framework
7
7
 
@@ -1,3 +1,3 @@
1
1
  module CocoaPodsKeys
2
- VERSION = '2.0.6'.freeze
2
+ VERSION = '2.0.7'.freeze
3
3
  end
@@ -65,7 +65,6 @@ module CocoaPodsKeys
65
65
  setter.run
66
66
  end
67
67
  end
68
- CocoaPodsKeys::KeyringLiberator.save_keyring(keyring)
69
68
 
70
69
  existing_keyring || !keys.empty?
71
70
  end
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.6
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: 2018-10-19 00:00:00.000000000 Z
12
+ date: 2019-01-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: osx_keychain