fastlane-plugin-rome 0.3.7 → 0.3.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +12 -1
- data/lib/fastlane/plugin/rome/actions/rome_action.rb +1 -0
- data/lib/fastlane/plugin/rome/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a5526d53283cf225b265b29e5fa3f00bac9405b8f49d33d9b52524888c47c0f6
|
4
|
+
data.tar.gz: ac940147ed4012f6998a65bd3fb4e4e2c11f4b8bd21413a4262f0a13cb1bbe7f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4748ba3e3c6e106c11807207b1f5024d3484055510e24e79c164685814119a379567e8d3609022e2be2a2135ca088a05740a36f6f841847806d4e07e86e9d050
|
7
|
+
data.tar.gz: ddbf69f057f82a89e3d44302df84c40b26e4c6ee6087ff405475bb7437c20ceb5b7c33caa44f22e3409ae1c71f383c6d350b6f1d54208dbc33c96c6eace5b503
|
data/README.md
CHANGED
@@ -16,7 +16,7 @@ A S3 cache tool for Carthage
|
|
16
16
|
|
17
17
|
Please see more on the tool's repo: [Rome](https://github.com/blender/rome)
|
18
18
|
|
19
|
-
##
|
19
|
+
## Examples
|
20
20
|
|
21
21
|
```bash
|
22
22
|
rome(
|
@@ -24,6 +24,17 @@ rome(
|
|
24
24
|
command: "upload", # One of: download, upload, list
|
25
25
|
verbose: false, # Print rome output inline
|
26
26
|
platform: "all", # Define which platform to build for (one of ‘all’, ‘Mac’, ‘iOS’, ‘watchOS’, ‘tvOS‘, or comma-separated values of the formers except for ‘all’)
|
27
|
+
cacheprefix: "Swift_4_2_1", # A prefix appended to the top level directories inside the caches. Useful to separate artifacts between Swift versions
|
28
|
+
romefile: "~/Code/", # The path to the Romefile to use. Defaults to the \"Romefile\" in the current directory
|
29
|
+
noignore: "true", # Ignore the `ignoreMap` section in the Romefile when performing the operation
|
30
|
+
concurrently: "true", # Maximise concurrency while performing the operation. Might make verbose output hard to follow
|
31
|
+
)
|
32
|
+
```
|
33
|
+
|
34
|
+
```bash
|
35
|
+
rome(
|
36
|
+
command: "list",
|
37
|
+
printformat: "JSON", # Sets list output formats: JSON or if omitted, default to Text
|
27
38
|
)
|
28
39
|
```
|
29
40
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-rome
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- François Benaiteau
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2019-
|
12
|
+
date: 2019-08-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: pry
|