fastlane-plugin-ensure_xcode_build_version 0.1.3 → 1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -2
- data/lib/fastlane/plugin/ensure_xcode_build_version/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4134a3c7a8c07ad4223631fe9479cbc50c1a6a8c
|
4
|
+
data.tar.gz: c649a35fe38c89101214e9362642473ae1e39949
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fbb64a9381ee2f51c1ab1f612159a35ec7176698274d58a870f9057f80a288df1450569bc4da9284773a70ad5d5e478be4c2bbd71ca3a78e7284367ccab28094
|
7
|
+
data.tar.gz: 6113a2bbdcfe0363c213b6cc5258824fe85fedade7eabcde56c9ed6df06ba8b774e7dec859e4b3fbd380ed00d86bcafa43d535ad090a581e600d303065d8243f
|
data/README.md
CHANGED
@@ -26,14 +26,16 @@ If building your app requires a specific version of Xcode, you can invoke this c
|
|
26
26
|
```ruby
|
27
27
|
# If you want to make sure that you use Xcode 8 GM
|
28
28
|
ensure_xcode_build_version(build_version: "8A218a")
|
29
|
+
# Xcode 8.3.3
|
30
|
+
ensure_xcode_build_version(build_version: "8E3004b")
|
31
|
+
# Xcode 9 beta 4
|
32
|
+
ensure_xcode_build_version(build_version: "9M189t")
|
29
33
|
```
|
30
34
|
|
31
35
|
## Example
|
32
36
|
|
33
37
|
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`.
|
34
38
|
|
35
|
-
**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)
|
36
|
-
|
37
39
|
## Run tests for this plugin
|
38
40
|
|
39
41
|
To run both the tests, and code style validation, run
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-ensure_xcode_build_version
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: '1.0'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fumiya Nakamura
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-07-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|