fastlane-plugin-install_provisioning_profiles 0.1.0 → 0.1.1
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/README.md +4 -5
- data/lib/fastlane/plugin/install_provisioning_profiles/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4e7ab9a41257db8df790f02fffa88fd94db1e1c606606210d901dcaf2d856b0f
|
|
4
|
+
data.tar.gz: 89d567f89aa2855298bf9b253f2903309226e1144a99e21101b3900f74e65b2e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a1ad2cb0828c3cee174a01d9f358c38ece886db3fed2b2f14142b745cdff7c1e5fbcc859508bfbdddc72845fa5f534a9ace9c04aa029def43cd9905557d2a1ea
|
|
7
|
+
data.tar.gz: a88d7916b1f555bce0d957407548ebca2506759a23ff07af88d6f0716c38f36a1867c42a385de1589d85d892a0bdd7190eb8069ac5098c63c0283b674cd9f8c3
|
data/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Install Provisioning Profiles
|
|
2
2
|
|
|
3
3
|
[](https://rubygems.org/gems/fastlane-plugin-install_provisioning_profiles)
|
|
4
|
+
[](https://circleci.com/gh/dgyesbreghs/install_provisioning_profiles)
|
|
4
5
|
|
|
5
6
|
## Getting Started
|
|
6
7
|
|
|
@@ -10,18 +11,16 @@ This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To
|
|
|
10
11
|
fastlane add_plugin install_provisioning_profiles
|
|
11
12
|
```
|
|
12
13
|
|
|
13
|
-
## About
|
|
14
|
+
## About install provisioning profiles
|
|
14
15
|
|
|
15
16
|
Install all the provisioning profiles located in you're project.
|
|
16
17
|
|
|
17
|
-
|
|
18
|
+
Just check in all the provisioning profiles needed to compile you're project, and we take care of the rest.
|
|
18
19
|
|
|
19
20
|
## Example
|
|
20
21
|
|
|
21
22
|
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
23
|
|
|
23
|
-
**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)
|
|
24
|
-
|
|
25
24
|
## Run tests for this plugin
|
|
26
25
|
|
|
27
26
|
To run both the tests, and code style validation, run
|