credentials_manager 0.14.0 → 0.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +8 -5
- data/lib/credentials_manager/appfile_config.rb +6 -0
- data/lib/credentials_manager/version.rb +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1b6e12265747372e77559f3aad7fd658364f15db
|
4
|
+
data.tar.gz: a49bdf06f375021bd7d7f66b79b618c1335ba67f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a932e919e2b46748d34ac3eac89dc9b16f3d0ba05fa653aae8e6170345189ea7c4bf69381c187461216c2ded63a9b282d64cab9421c865408aa89f6825684aa1
|
7
|
+
data.tar.gz: 26bb23c1313c1db0128e28534e869efd8dd4dfe09b09c2179727196a88368124fe31acecc2037fa3f352bae7c03725a1cbf2665e0394b95b3928125d96301734
|
data/README.md
CHANGED
@@ -9,15 +9,15 @@ All code related to your username and password can be found here: [account_manag
|
|
9
9
|
Along with the [Ruby libraries](https://github.com/fastlane/credentials_manager#implementing-a-custom-solution) you can use the command line interface to add credentials to the keychain.
|
10
10
|
|
11
11
|
**Adding Credentials**
|
12
|
-
```
|
13
|
-
|
12
|
+
```
|
13
|
+
fastlane-credentials add --username felix@krausefx.com
|
14
14
|
Password: *********
|
15
|
-
Credential
|
15
|
+
Credential felix@krausefx.com:********* added to keychain.
|
16
16
|
```
|
17
17
|
|
18
18
|
**Removing Credentials**
|
19
|
-
```
|
20
|
-
|
19
|
+
```
|
20
|
+
fastlane-credentials remove --username felix@krausefx.com
|
21
21
|
password has been deleted.
|
22
22
|
```
|
23
23
|
|
@@ -52,6 +52,9 @@ puts data.user
|
|
52
52
|
puts data.password
|
53
53
|
```
|
54
54
|
|
55
|
+
# Code of Conduct
|
56
|
+
Help us keep `fastlane` open and inclusive. Please read and follow our [Code of Conduct](https://github.com/fastlane/code-of-conduct).
|
57
|
+
|
55
58
|
# License
|
56
59
|
|
57
60
|
This project is licensed under the terms of the MIT license. See the LICENSE file.
|
@@ -94,7 +94,12 @@ module CredentialsManager
|
|
94
94
|
end
|
95
95
|
|
96
96
|
# Android
|
97
|
+
def json_key_file(*args, &block)
|
98
|
+
setter(:json_key_file, *args, &block)
|
99
|
+
end
|
100
|
+
|
97
101
|
def issuer(*args, &block)
|
102
|
+
puts "Appfile: DEPRECATED issuer: use json_key_file instead".red
|
98
103
|
setter(:issuer, *args, &block)
|
99
104
|
end
|
100
105
|
|
@@ -103,6 +108,7 @@ module CredentialsManager
|
|
103
108
|
end
|
104
109
|
|
105
110
|
def keyfile(*args, &block)
|
111
|
+
puts "Appfile: DEPRECATED keyfile: use json_key_file instead".red
|
106
112
|
setter(:keyfile, *args, &block)
|
107
113
|
end
|
108
114
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: credentials_manager
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.15.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-02-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: colored
|
@@ -170,14 +170,14 @@ dependencies:
|
|
170
170
|
requirements:
|
171
171
|
- - "~>"
|
172
172
|
- !ruby/object:Gem::Version
|
173
|
-
version:
|
173
|
+
version: 0.35.1
|
174
174
|
type: :development
|
175
175
|
prerelease: false
|
176
176
|
version_requirements: !ruby/object:Gem::Requirement
|
177
177
|
requirements:
|
178
178
|
- - "~>"
|
179
179
|
- !ruby/object:Gem::Version
|
180
|
-
version:
|
180
|
+
version: 0.35.1
|
181
181
|
description: Password manager used in fastlane.tools
|
182
182
|
email:
|
183
183
|
- fastlane@krausefx.com
|
@@ -214,8 +214,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
214
214
|
version: '0'
|
215
215
|
requirements: []
|
216
216
|
rubyforge_project:
|
217
|
-
rubygems_version: 2.
|
217
|
+
rubygems_version: 2.2.2
|
218
218
|
signing_key:
|
219
219
|
specification_version: 4
|
220
220
|
summary: Password manager used in fastlane.tools
|
221
221
|
test_files: []
|
222
|
+
has_rdoc:
|