sigh 1.0.0.beta2 → 1.0.0.beta3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1b84e72ecc43ffbd4df78e19e4b9390337849736
4
- data.tar.gz: 697c2ce854bdbd7825e99db5862515db1ecea922
3
+ metadata.gz: f21da4c73c3449464347a4cee9f86a93be670851
4
+ data.tar.gz: db06478f5eb5350d801494ee9eeacc582056ae05
5
5
  SHA512:
6
- metadata.gz: 8edbcc516ce6cbd23bebc36e82174354cc23192cc9fb1ccae8cefa06985ef714b8a4db08bf0a888792a9d73523a7cf462ea94bc38be90366de924072647632b3
7
- data.tar.gz: 60d8c52f0984bad37ab25eecb6fb03d7819472822af65fc5191410674df968326525fc11ae8a4f35ac3a13042ae76a9d6c7a0d11a3550b6e65c9c5f09979680b
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
@@ -1,3 +1,3 @@
1
1
  module Sigh
2
- VERSION = "1.0.0.beta2"
2
+ VERSION = "1.0.0.beta3"
3
3
  end
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.beta2
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-26 00:00:00.000000000 Z
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.1
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.1
54
+ version: 0.0.4
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: bundler
57
57
  requirement: !ruby/object:Gem::Requirement