sigh 1.0.0.beta2 → 1.0.0.beta3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -0
- data/lib/sigh/options.rb +11 -0
- data/lib/sigh/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f21da4c73c3449464347a4cee9f86a93be670851
|
4
|
+
data.tar.gz: db06478f5eb5350d801494ee9eeacc582056ae05
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 36a723c0a83d244c5d59411e9f8a2eadb5487b20380d10e72ee98e99101552410344323aa70bd362cdab2ca3e5a5f709ff57272ea025e90c85a4e32cc3d9c7b3
|
7
|
+
data.tar.gz: d1249ee3a8423c29d5248b77ce225c94808c8bc8fb99cb5113c4ce9c01d930d9b22ec9d1dc8e41f26ced415ae1b731dbd2993dcf7ef3a12050b9a7197a0c5df3
|
data/README.md
CHANGED
@@ -175,6 +175,8 @@ Choose signing certificate to use:
|
|
175
175
|
- `SIGH_CERTIFICATE_ID` (The ID of the certificate)
|
176
176
|
- `SIGH_CERTIFICATE_EXPIRE_DATE` (The expire date of the certificate)
|
177
177
|
|
178
|
+
As always, run `sigh --help` to get a list of all variables.
|
179
|
+
|
178
180
|
If you're using [cert](https://github.com/KrauseFx/cert) in combination with [fastlane](https://github.com/KrauseFx/fastlane) the signing certificate will automatically be selected for you. (make sure to run `cert` before `sigh`)
|
179
181
|
|
180
182
|
`sigh` will store the `UDID` of the generated provisioning profile in the environment: `SIGH_UDID`.
|
data/lib/sigh/options.rb
CHANGED
@@ -44,9 +44,19 @@ module Sigh
|
|
44
44
|
env_name: "SIGH_TEAM_ID",
|
45
45
|
description: "The ID of your team if you're in multiple teams",
|
46
46
|
optional: true,
|
47
|
+
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_id),
|
47
48
|
verify_block: Proc.new do |value|
|
48
49
|
ENV["FASTLANE_TEAM_ID"] = value
|
49
50
|
end),
|
51
|
+
FastlaneCore::ConfigItem.new(key: :team_name,
|
52
|
+
short_option: "-l",
|
53
|
+
env_name: "SIGH_TEAM_NAME",
|
54
|
+
description: "The name of your team if you're in multiple teams",
|
55
|
+
optional: true,
|
56
|
+
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_name),
|
57
|
+
verify_block: Proc.new do |value|
|
58
|
+
ENV["FASTLANE_TEAM_NAME"] = value
|
59
|
+
end),
|
50
60
|
FastlaneCore::ConfigItem.new(key: :provisioning_name,
|
51
61
|
short_option: "-n",
|
52
62
|
env_name: "SIGH_PROVISIONING_PROFILE_NAME",
|
@@ -83,6 +93,7 @@ module Sigh
|
|
83
93
|
verify_block: Proc.new do |value|
|
84
94
|
raise "The output name must end with .mobileprovision".red unless value.end_with?".mobileprovision"
|
85
95
|
end)
|
96
|
+
|
86
97
|
]
|
87
98
|
end
|
88
99
|
end
|
data/lib/sigh/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sigh
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.beta3
|
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-05-
|
11
|
+
date: 2015-05-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fastlane_core
|
@@ -42,16 +42,16 @@ dependencies:
|
|
42
42
|
name: spaceship
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- -
|
45
|
+
- - '>='
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 0.0.
|
47
|
+
version: 0.0.4
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- -
|
52
|
+
- - '>='
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 0.0.
|
54
|
+
version: 0.0.4
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: bundler
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|