fastlane-plugin-update_build_settings_key 0.1.2 → 0.1.3

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: 0d773e602d044941e78e13271ab94d898ab1f971
4
- data.tar.gz: c4ff9198b6fe7e81df7caca4ea24c1c105f5eff7
3
+ metadata.gz: c05c8a6aaec7ca318dbd35ae99893d647448409d
4
+ data.tar.gz: f4f6f95edac7c013ae93e9fb011f433d38e6987f
5
5
  SHA512:
6
- metadata.gz: 11d72904bc919521158d4587f4425503cb1ebe80509a277a9de4be75bad219927e52a5b467d0aa790ff4ce112266144213666325523ec6313275e30882569bc0
7
- data.tar.gz: 9980eb5d2fe060be3905f2cc1accccd68188ad388bc667a1cc8d9aaff70e20cfe72ea3977d8488332c15e0e6fba8b959f286682903612b336bd843b24bbf76ae
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
- Updated code signing settings from 'Automatic' to a specific profile
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)
@@ -33,11 +33,11 @@ module Fastlane
33
33
  end
34
34
 
35
35
  def self.description
36
- "Updated build settings key to a new value"
36
+ "Updates build settings key to a new value"
37
37
  end
38
38
 
39
39
  def self.authors
40
- ["taoye"]
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
- "Updated build settings key to a new value including specific profile,\nwill Updated code signing settings from 'Automatic' to a specific profile when key is PROVISIONING_PROFILE_SPECIFIER"
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
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module UpdateBuildSettingsKey
3
- VERSION = "0.1.2"
3
+ VERSION = "0.1.3"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-update_build_settings_key
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - ungacy