fastlane-plugin-update_build_settings_key 0.1.2 → 0.1.3
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c05c8a6aaec7ca318dbd35ae99893d647448409d
|
4
|
+
data.tar.gz: f4f6f95edac7c013ae93e9fb011f433d38e6987f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 940b65d2ca795ffa26a444d4048e60924bdf26439279ac8174c3a6da5986dd1c10b3ecfce5439b903ade0eb58cad3266301ca4a478acd47e26e64d2efefc6d4f
|
7
|
+
data.tar.gz: 22054acf99ab88c9fa82902649e3d58bedc2fee4d2a9f0a7d9a156d654f46ba9df60a93acd8b712046bd00de1254ab7ebdbe2c7d63d8738b81ccf873deabca11
|
data/README.md
CHANGED
@@ -12,12 +12,27 @@ fastlane add_plugin update_build_settings_key
|
|
12
12
|
|
13
13
|
## About update_build_settings_key
|
14
14
|
|
15
|
-
|
15
|
+
Updates build settings key to a new value
|
16
|
+
|
17
|
+
**Note to author:**Updates build settings key to a new value including specific profile,
|
18
|
+
will update code signing settings from 'Automatic' to a specific profile when key is PROVISIONING_PROFILE_SPECIFIER
|
16
19
|
|
17
|
-
**Note to author:** Add a more detailed description about this plugin here. If your plugin contains multiple actions, make sure to mention them here.
|
18
20
|
|
19
21
|
## Example
|
20
22
|
|
23
|
+
```
|
24
|
+
update_build_settings_key(
|
25
|
+
xcodeproj: "Demo/Demo.xcodeproj",
|
26
|
+
configuration: "Release",
|
27
|
+
build_settings_key: "PROVISIONING_PROFILE_SPECIFIER",
|
28
|
+
map: {
|
29
|
+
"Demo Watch Extension/Info.plist" => "Demo WatchKit Extension 2",
|
30
|
+
"Demo Watch/Info.plist" => "Demo WatchKit App",
|
31
|
+
"Demo Today/Info.plist" => "Demo Today",
|
32
|
+
"Demo/Info.plist" => "Demo"
|
33
|
+
}
|
34
|
+
)
|
35
|
+
```
|
21
36
|
Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
|
22
37
|
|
23
38
|
**Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
|
data/lib/fastlane/plugin/update_build_settings_key/actions/update_build_settings_key_action.rb
CHANGED
@@ -33,11 +33,11 @@ module Fastlane
|
|
33
33
|
end
|
34
34
|
|
35
35
|
def self.description
|
36
|
-
"
|
36
|
+
"Updates build settings key to a new value"
|
37
37
|
end
|
38
38
|
|
39
39
|
def self.authors
|
40
|
-
["
|
40
|
+
["ungacy"]
|
41
41
|
end
|
42
42
|
|
43
43
|
def self.return_value
|
@@ -46,7 +46,7 @@ module Fastlane
|
|
46
46
|
|
47
47
|
def self.details
|
48
48
|
# Optional:
|
49
|
-
"
|
49
|
+
"Updates build settings key to a new value including specific profile,\nwill Update code signing settings from 'Automatic' to a specific profile when key is PROVISIONING_PROFILE_SPECIFIER"
|
50
50
|
end
|
51
51
|
|
52
52
|
def self.available_options
|