credentials_manager 0.9.1 → 0.10.0

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
  SHA1:
3
- metadata.gz: 95243b4c1734d166d7c4c814c2ce83bfc1b6858f
4
- data.tar.gz: d6304d2c2de67021216af154c43ebc92b9f8d982
3
+ metadata.gz: c22838a4ce5b88f63c0d68178550857d3b4a3044
4
+ data.tar.gz: c9823813820a6c701b40ea2dc35db7c76ecc2b6c
5
5
  SHA512:
6
- metadata.gz: dbfd96e5bfc08a3d386d373d2f405e65abdaa31894015233f99d4b63b140ff522e1128d57451e242b74e3008a210778c7517c4a2c727ae69fabfeadd751b7358
7
- data.tar.gz: c2d7271f33de452423d4dd7f1b8bed0c44f1dccff3ce1a3af9c045691a6d736c25f0d7965e2ae7ea04693befd46f06fcb7014d8bf63ecec1d6d2a95ba58509f2
6
+ metadata.gz: cc74a4f5ea22a867802bfc95a81aebb17ffca9b5e3bd1ef7b73c895bd5be15ffd7230f784e9b4344c9ecd532a841fd53ed995580438467309f1abff53d659d81
7
+ data.tar.gz: 2621828f19aebf91cb885b34195a26dce5d728c94c35fe18c512cc644734ebbddab2375c092cd4829ca7aebd66503ca95ea89f8f1350d1e92f49ef76f8afaad6
data/README.md CHANGED
@@ -41,12 +41,3 @@ puts data.password
41
41
  This project is licensed under the terms of the MIT license. See the LICENSE file.
42
42
 
43
43
  > This project and all fastlane tools are in no way affiliated with Apple Inc. This project is open source under the MIT license, which means you have full access to the source code and can modify it to fit your own needs. All fastlane tools run on your own computer or server, so your credentials or other sensitive information will never leave your own computer. You are responsible for how you use fastlane tools.
44
-
45
- # Contributing
46
-
47
- 1. Create an issue to discuss about your idea
48
- 2. Fork it (https://github.com/KrauseFx/CredentialsManager/fork)
49
- 3. Create your feature branch (`git checkout -b my-new-feature`)
50
- 4. Commit your changes (`git commit -am 'Add some feature'`)
51
- 5. Push to the branch (`git push origin my-new-feature`)
52
- 6. Create a new Pull Request
@@ -58,6 +58,7 @@ module CredentialsManager
58
58
 
59
59
  # Setters
60
60
 
61
+ # iOS
61
62
  def app_identifier(*args, &block)
62
63
  setter(:app_identifier, *args, &block)
63
64
  end
@@ -74,6 +75,19 @@ module CredentialsManager
74
75
  setter(:team_name, *args, &block)
75
76
  end
76
77
 
78
+ # Android
79
+ def issuer(*args, &block)
80
+ setter(:issuer, *args, &block)
81
+ end
82
+
83
+ def package_name(*args, &block)
84
+ setter(:package_name, *args, &block)
85
+ end
86
+
87
+ def keyfile(*args, &block)
88
+ setter(:keyfile, *args, &block)
89
+ end
90
+
77
91
  # Override Appfile configuration for a specific lane.
78
92
  #
79
93
  # lane_name - Symbol representing a lane name. (Can be either :name, 'name' or 'platform name')
@@ -1,3 +1,3 @@
1
1
  module CredentialsManager
2
- VERSION = "0.9.1"
2
+ VERSION = "0.10.0"
3
3
  end
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.9.1
4
+ version: 0.10.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: 2015-10-17 00:00:00.000000000 Z
11
+ date: 2015-10-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: highline