sigh 0.4.9 → 0.4.10
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 +4 -4
- data/lib/sigh/options.rb +8 -4
- data/lib/sigh/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f344b0ea8e7267db1a3a23e63716f0e34c8ecac2
|
|
4
|
+
data.tar.gz: fde321e721289dc00e7f915d5bf4191ed83e6149
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b7ee5c564762a360044b230d522a6a55d7b7532e678da0b058ef5bf9c699f1ba3ab2a9436f2673cb6ace39971a8a6b65a4a665d72bb8884835433a6adc5b30cc
|
|
7
|
+
data.tar.gz: 651032d38f80bec4e0efc83267e5518fec291c615737afdc2b9d6ef36c753a8d66069ca9e91ccef947df885d7c4ce41e51688977b317f0cf37981a68905c7f37
|
data/lib/sigh/options.rb
CHANGED
|
@@ -8,19 +8,23 @@ module Sigh
|
|
|
8
8
|
short_option: "-k",
|
|
9
9
|
env_name: "SIGH_AD_HOC",
|
|
10
10
|
description: "Setting this flag will generate AdHoc profiles instead of App Store Profiles",
|
|
11
|
-
is_string: false
|
|
11
|
+
is_string: false,
|
|
12
|
+
default_value: false),
|
|
12
13
|
FastlaneCore::ConfigItem.new(key: :skip_install,
|
|
13
14
|
env_name: "SIGH_SKIP_INSTALL",
|
|
14
15
|
description: "By default, the certificate will be added on your local machine. Setting this flag will skip this action",
|
|
15
|
-
is_string: false
|
|
16
|
+
is_string: false,
|
|
17
|
+
default_value: false),
|
|
16
18
|
FastlaneCore::ConfigItem.new(key: :development,
|
|
17
19
|
env_name: "SIGH_DEVELOPMENT",
|
|
18
20
|
description: "Renew the development certificate instead of the production one",
|
|
19
|
-
is_string: false
|
|
21
|
+
is_string: false,
|
|
22
|
+
default_value: false),
|
|
20
23
|
FastlaneCore::ConfigItem.new(key: :force,
|
|
21
24
|
env_name: "SIGH_FORCE",
|
|
22
25
|
description: "Renew non-development provisioning profiles regardless of its state",
|
|
23
|
-
is_string: false
|
|
26
|
+
is_string: false,
|
|
27
|
+
default_value: false),
|
|
24
28
|
FastlaneCore::ConfigItem.new(key: :app_identifier,
|
|
25
29
|
short_option: "-a",
|
|
26
30
|
env_name: "SIGH_APP_IDENTIFIER",
|
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: 0.4.
|
|
4
|
+
version: 0.4.10
|
|
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-04-
|
|
11
|
+
date: 2015-04-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fastlane_core
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '>='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.6.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '>='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.
|
|
26
|
+
version: 0.6.0
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: plist
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|